···324324 return dev->extra_buf2_address + r_pointer;325325 }326326327327- dbg("attempt to read beyong ring bufer end");327327+ dbg("attempt to read beyond ring buffer end");328328 return 0;329329}330330
+1-1
drivers/media/rc/ene_ir.h
···227227228228 /* TX buffer */229229 unsigned *tx_buffer; /* input samples buffer*/230230- int tx_pos; /* position in that bufer */230230+ int tx_pos; /* position in that buffer */231231 int tx_len; /* current len of tx buffer */232232 int tx_done; /* done transmitting */233233 /* one more sample pending*/
+1-1
drivers/net/ethernet/chelsio/cxgb4vf/sge.c
···684684 /*685685 * Update our accounting state to incorporate the new Free List686686 * buffers, tell the hardware about them and return the number of687687- * bufers which we were able to allocate.687687+ * buffers which we were able to allocate.688688 */689689 cred = fl->avail - cred;690690 fl->pend_cred += cred;
+1-1
drivers/scsi/gdth.h
···359359 u32 cmd_buff_addr2; /* physical address of cmd buffer 1 */ 360360 u32 cmd_buff_u_addr2; /* reserved for 64 bit addressing */361361 u32 cmd_buff_indx2; /* cmd buf addr1 unique identifier */362362- u32 cmd_buff_size; /* size of each cmd bufer in bytes */362362+ u32 cmd_buff_size; /* size of each cmd buffer in bytes */363363 u32 reserved1;364364 u32 reserved2;365365} __attribute__((packed)) gdth_perf_modes;
+1-1
drivers/usb/musb/cppi_dma.c
···513513 if (!(val & MUSB_RXCSR_H_REQPKT)) {514514 val |= MUSB_RXCSR_H_REQPKT | MUSB_RXCSR_H_WZC_BITS;515515 musb_writew(regs, MUSB_RXCSR, val);516516- /* flush writebufer */516516+ /* flush writebuffer */517517 val = musb_readw(regs, MUSB_RXCSR);518518 }519519 }
···18781878 * a[0] = 'a';18791879 * truncate(f, 4096);18801880 * we have in the page first buffer_head mapped via page_mkwrite call back18811881- * but other bufer_heads would be unmapped but dirty(dirty done via the18811881+ * but other buffer_heads would be unmapped but dirty (dirty done via the18821882 * do_wp_page). So writepage should write the first block. If we modify18831883 * the mmap area beyond 1024 we will again get a page_fault and the18841884 * page_mkwrite callback will do the block allocation and mark the
+1-1
fs/jbd/checkpoint.c
···537537 * them.538538 *539539 * Called with j_list_lock held.540540- * Returns number of bufers reaped (for debug)540540+ * Returns number of buffers reaped (for debug)541541 */542542543543static int journal_clean_one_cp_list(struct journal_head *jh, int *released)
+1-1
fs/jbd2/checkpoint.c
···565565 *566566 * Called with the journal locked.567567 * Called with j_list_lock held.568568- * Returns number of bufers reaped (for debug)568568+ * Returns number of buffers reaped (for debug)569569 */570570571571static int journal_clean_one_cp_list(struct journal_head *jh, int *released)
+1-1
fs/xfs/xfs_buf.c
···13701370 goto restart;13711371 }13721372 /*13731373- * clear the LRU reference count so the bufer doesn't get13731373+ * clear the LRU reference count so the buffer doesn't get13741374 * ignored in xfs_buf_rele().13751375 */13761376 atomic_set(&bp->b_lru_ref, 0);
+2-2
lib/decompress_bunzip2.c
···691691 outbuf = malloc(BZIP2_IOBUF_SIZE);692692693693 if (!outbuf) {694694- error("Could not allocate output bufer");694694+ error("Could not allocate output buffer");695695 return RETVAL_OUT_OF_MEMORY;696696 }697697 if (buf)···699699 else700700 inbuf = malloc(BZIP2_IOBUF_SIZE);701701 if (!inbuf) {702702- error("Could not allocate input bufer");702702+ error("Could not allocate input buffer");703703 i = RETVAL_OUT_OF_MEMORY;704704 goto exit_0;705705 }
+1-1
lib/decompress_unlzma.c
···562562 else563563 inbuf = malloc(LZMA_IOBUF_SIZE);564564 if (!inbuf) {565565- error("Could not allocate input bufer");565565+ error("Could not allocate input buffer");566566 goto exit_0;567567 }568568