···3535struct fepimg {3636 int type; /* board type */3737 int len; /* length of image */3838- char fepimage[1]; /* begining of image */3838+ char fepimage[1]; /* beginning of image */3939};40404141struct downldio {
+1-1
drivers/staging/dgap/dgap_driver.h
···4646/*4747 * Driver identification, error and debugging statments4848 *4949- * In theory, you can change all occurances of "digi" in the next4949+ * In theory, you can change all occurrences of "digi" in the next5050 * three lines, and the driver printk's will all automagically change.5151 *5252 * APR((fmt, args, ...)); Always prints message
+1-1
drivers/staging/dgap/dgap_fep5.h
···211211#define SIFLAG 0xea /* Set UNIX iflags */212212#define SFLOWC 0xeb /* Set flow control characters */213213#define STLOW 0xec /* Set transmit low water mark */214214-#define RPAUSE 0xee /* Pause recieve */214214+#define RPAUSE 0xee /* Pause receive */215215#define RRESUME 0xef /* Resume receive */ 216216#define CHRESET 0xf0 /* Reset Channel */217217#define BUFSETALL 0xf2 /* Set Tx & Rx buffer size avail*/
+2-2
drivers/staging/dgap/dgap_parse.c
···904904/*905905 * dgap_sindex: much like index(), but it looks for a match of any character in906906 * the group, and returns that position. If the first character is a ^, then907907- * this will match the first occurence not in that group.907907+ * this will match the first occurrence not in that group.908908 */909909static char *dgap_sindex (char *string, char *group)910910{···1152115211531153/*11541154 * Given a specific type of board, if found, detached link and 11551155- * returns the first occurance in the list.11551155+ * returns the first occurrence in the list.11561156 */11571157struct cnode *dgap_find_config(int type, int bus, int slot)11581158{
+2-2
drivers/staging/dgap/dgap_tty.c
···249249250250 /*251251 * If we're doing transparent print, we have to do all of the above252252- * again, seperately so we don't get the LD confused about what major252252+ * again, separately so we don't get the LD confused about what major253253 * we are when we get into the dgap_tty_open() routine.254254 */255255 brd->PrintDriver = alloc_tty_driver(MAXPORTS);···1069106910701070 DGAP_LOCK(brd->bd_lock, lock_flags);1071107110721072- /* The wait above should guarentee this cannot happen */10721072+ /* The wait above should guarantee this cannot happen */10731073 if (brd->state != BOARD_READY) {10741074 DGAP_UNLOCK(brd->bd_lock, lock_flags);10751075 return -ENXIO;
+2-2
drivers/staging/dgap/digi.h
···203203 unsigned long shrink_buf_vaddr; /* Virtual address of board */204204 unsigned long shrink_buf_phys; /* Physical address of board */205205 unsigned long shrink_buf_bseg; /* Amount of board memory */206206- unsigned long shrink_buf_hseg; /* '186 Begining of Dual-Port */206206+ unsigned long shrink_buf_hseg; /* '186 Beginning of Dual-Port */207207208208- unsigned long shrink_buf_lseg; /* '186 Begining of freed memory */ 208208+ unsigned long shrink_buf_lseg; /* '186 Beginning of freed memory */ 209209 unsigned long shrink_buf_mseg; /* Linear address from start of210210 dual-port were freed memory211211 begins, host viewpoint. */
+2-2
drivers/staging/dgap/downld.c
···5252void myperror();53535454/*5555-** This structure is used to keep track of the diferent images available5555+** This structure is used to keep track of the different images available5656** to give to the driver. It is arranged so that the things that are5757** constants or that have defaults are first inthe strucutre to simplify5858** the table of initializers.···789789/*790790** myperror()791791**792792-** Same as normal perror(), but places the program name at the begining792792+** Same as normal perror(), but places the program name at the beginning793793** of the message.794794*/795795void myperror(char *s)