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

fix comnment/printk typos concerning "empty"

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Uwe Kleine-König and committed by
Jiri Kosina
a7ce2e0d e3845dee

+5 -5
+1 -1
Documentation/scsi/ChangeLog.lpfc
··· 807 807 lpfc_disc_done/lpfc_do_dpc cleanup - lpfc_disc_done can return 808 808 void - move lpfc_do_dpc and lpfc_disc_done to lpfc_hbadisc.c - 809 809 remove checking of list emptiness before calling lpfc_disc_done, 810 - it handles the emtpy list case just fine and the additional 810 + it handles the empty list case just fine and the additional 811 811 instructions cost less then the bustlocked spinlock operations. 812 812 * Integrated patch from Christoph Hellwig: This adds a new 64bit 813 813 counter instead, brd_no isn't reused anymore. Also some tiny
+1 -1
arch/arm/plat-mxc/dma-mx1-mx2.c
··· 310 310 imxdma->resbytes = dma_length; 311 311 312 312 if (!sg || !sgcount) { 313 - printk(KERN_ERR "imxdma%d: imx_dma_setup_sg epty sg list\n", 313 + printk(KERN_ERR "imxdma%d: imx_dma_setup_sg empty sg list\n", 314 314 channel); 315 315 return -EINVAL; 316 316 }
+1 -1
drivers/scsi/aic7xxx_old/aic7xxx.seq
··· 615 615 * went empty and the next bit of data is copied from 616 616 * the SCSI fifo into the PCI fifo. It should only 617 617 * come on when both FIFOs (meaning the entire FIFO 618 - * chain) are emtpy. Since it can take up to 4 cycles 618 + * chain) are empty. Since it can take up to 4 cycles 619 619 * for new data to be copied from the SCSI fifo into 620 620 * the PCI fifo, testing for FIFOEMP status for 4 621 621 * extra times gives the needed time for any
+1 -1
drivers/serial/nwpserial.c
··· 81 81 82 82 uart_console_write(&up->port, s, count, nwpserial_console_putchar); 83 83 84 - /* wait for transmitter to become emtpy */ 84 + /* wait for transmitter to become empty */ 85 85 while ((dcr_read(up->dcr_host, UART_LSR) & UART_LSR_THRE) == 0) 86 86 cpu_relax(); 87 87
+1 -1
sound/usb/pcm.c
··· 636 636 min_datainterval = min(min_datainterval, fp->datainterval); 637 637 } 638 638 if (min_datainterval == 0xff) { 639 - hwc_debug(" --> get emtpy\n"); 639 + hwc_debug(" --> get empty\n"); 640 640 it->empty = 1; 641 641 return -EINVAL; 642 642 }