Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

treewide: Fix comment and string typo 'bufer'

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Paul Bolle and committed by
Jiri Kosina
90802ed9 05183189

+14 -14
+1 -1
drivers/media/rc/ene_ir.c
··· 324 324 return dev->extra_buf2_address + r_pointer; 325 325 } 326 326 327 - dbg("attempt to read beyong ring bufer end"); 327 + dbg("attempt to read beyond ring buffer end"); 328 328 return 0; 329 329 } 330 330
+1 -1
drivers/media/rc/ene_ir.h
··· 227 227 228 228 /* TX buffer */ 229 229 unsigned *tx_buffer; /* input samples buffer*/ 230 - int tx_pos; /* position in that bufer */ 230 + int tx_pos; /* position in that buffer */ 231 231 int tx_len; /* current len of tx buffer */ 232 232 int tx_done; /* done transmitting */ 233 233 /* one more sample pending*/
+1 -1
drivers/net/ethernet/chelsio/cxgb4vf/sge.c
··· 684 684 /* 685 685 * Update our accounting state to incorporate the new Free List 686 686 * buffers, tell the hardware about them and return the number of 687 - * bufers which we were able to allocate. 687 + * buffers which we were able to allocate. 688 688 */ 689 689 cred = fl->avail - cred; 690 690 fl->pend_cred += cred;
+1 -1
drivers/scsi/gdth.h
··· 359 359 u32 cmd_buff_addr2; /* physical address of cmd buffer 1 */ 360 360 u32 cmd_buff_u_addr2; /* reserved for 64 bit addressing */ 361 361 u32 cmd_buff_indx2; /* cmd buf addr1 unique identifier */ 362 - u32 cmd_buff_size; /* size of each cmd bufer in bytes */ 362 + u32 cmd_buff_size; /* size of each cmd buffer in bytes */ 363 363 u32 reserved1; 364 364 u32 reserved2; 365 365 } __attribute__((packed)) gdth_perf_modes;
+1 -1
drivers/usb/musb/cppi_dma.c
··· 513 513 if (!(val & MUSB_RXCSR_H_REQPKT)) { 514 514 val |= MUSB_RXCSR_H_REQPKT | MUSB_RXCSR_H_WZC_BITS; 515 515 musb_writew(regs, MUSB_RXCSR, val); 516 - /* flush writebufer */ 516 + /* flush writebuffer */ 517 517 val = musb_readw(regs, MUSB_RXCSR); 518 518 } 519 519 }
+1 -1
drivers/video/bf54x-lq043fb.c
··· 4 4 * Author: Michael Hennerich <hennerich@blackfin.uclinux.org> 5 5 * 6 6 * Created: 7 - * Description: ADSP-BF54x Framebufer driver 7 + * Description: ADSP-BF54x Framebuffer driver 8 8 * 9 9 * 10 10 * Modified:
+1 -1
drivers/video/bfin-t350mcqb-fb.c
··· 4 4 * Author: Michael Hennerich <hennerich@blackfin.uclinux.org> 5 5 * 6 6 * Created: 7 - * Description: Blackfin LCD Framebufer driver 7 + * Description: Blackfin LCD Framebuffer driver 8 8 * 9 9 * 10 10 * Modified:
+1 -1
fs/ext4/inode.c
··· 1878 1878 * a[0] = 'a'; 1879 1879 * truncate(f, 4096); 1880 1880 * we have in the page first buffer_head mapped via page_mkwrite call back 1881 - * but other bufer_heads would be unmapped but dirty(dirty done via the 1881 + * but other buffer_heads would be unmapped but dirty (dirty done via the 1882 1882 * do_wp_page). So writepage should write the first block. If we modify 1883 1883 * the mmap area beyond 1024 we will again get a page_fault and the 1884 1884 * page_mkwrite callback will do the block allocation and mark the
+1 -1
fs/jbd/checkpoint.c
··· 537 537 * them. 538 538 * 539 539 * Called with j_list_lock held. 540 - * Returns number of bufers reaped (for debug) 540 + * Returns number of buffers reaped (for debug) 541 541 */ 542 542 543 543 static int journal_clean_one_cp_list(struct journal_head *jh, int *released)
+1 -1
fs/jbd2/checkpoint.c
··· 565 565 * 566 566 * Called with the journal locked. 567 567 * Called with j_list_lock held. 568 - * Returns number of bufers reaped (for debug) 568 + * Returns number of buffers reaped (for debug) 569 569 */ 570 570 571 571 static int journal_clean_one_cp_list(struct journal_head *jh, int *released)
+1 -1
fs/xfs/xfs_buf.c
··· 1370 1370 goto restart; 1371 1371 } 1372 1372 /* 1373 - * clear the LRU reference count so the bufer doesn't get 1373 + * clear the LRU reference count so the buffer doesn't get 1374 1374 * ignored in xfs_buf_rele(). 1375 1375 */ 1376 1376 atomic_set(&bp->b_lru_ref, 0);
+2 -2
lib/decompress_bunzip2.c
··· 691 691 outbuf = malloc(BZIP2_IOBUF_SIZE); 692 692 693 693 if (!outbuf) { 694 - error("Could not allocate output bufer"); 694 + error("Could not allocate output buffer"); 695 695 return RETVAL_OUT_OF_MEMORY; 696 696 } 697 697 if (buf) ··· 699 699 else 700 700 inbuf = malloc(BZIP2_IOBUF_SIZE); 701 701 if (!inbuf) { 702 - error("Could not allocate input bufer"); 702 + error("Could not allocate input buffer"); 703 703 i = RETVAL_OUT_OF_MEMORY; 704 704 goto exit_0; 705 705 }
+1 -1
lib/decompress_unlzma.c
··· 562 562 else 563 563 inbuf = malloc(LZMA_IOBUF_SIZE); 564 564 if (!inbuf) { 565 - error("Could not allocate input bufer"); 565 + error("Could not allocate input buffer"); 566 566 goto exit_0; 567 567 } 568 568