Commit a7ce2e0d authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Jiri Kosina

fix comnment/printk typos concerning "empty"

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent e3845dee
...@@ -807,7 +807,7 @@ Changes from 20040908 to 20040920 ...@@ -807,7 +807,7 @@ Changes from 20040908 to 20040920
lpfc_disc_done/lpfc_do_dpc cleanup - lpfc_disc_done can return lpfc_disc_done/lpfc_do_dpc cleanup - lpfc_disc_done can return
void - move lpfc_do_dpc and lpfc_disc_done to lpfc_hbadisc.c - void - move lpfc_do_dpc and lpfc_disc_done to lpfc_hbadisc.c -
remove checking of list emptiness before calling lpfc_disc_done, remove checking of list emptiness before calling lpfc_disc_done,
it handles the emtpy list case just fine and the additional it handles the empty list case just fine and the additional
instructions cost less then the bustlocked spinlock operations. instructions cost less then the bustlocked spinlock operations.
* Integrated patch from Christoph Hellwig: This adds a new 64bit * Integrated patch from Christoph Hellwig: This adds a new 64bit
counter instead, brd_no isn't reused anymore. Also some tiny counter instead, brd_no isn't reused anymore. Also some tiny
......
...@@ -310,7 +310,7 @@ imx_dma_setup_sg(int channel, ...@@ -310,7 +310,7 @@ imx_dma_setup_sg(int channel,
imxdma->resbytes = dma_length; imxdma->resbytes = dma_length;
if (!sg || !sgcount) { if (!sg || !sgcount) {
printk(KERN_ERR "imxdma%d: imx_dma_setup_sg epty sg list\n", printk(KERN_ERR "imxdma%d: imx_dma_setup_sg empty sg list\n",
channel); channel);
return -EINVAL; return -EINVAL;
} }
......
...@@ -615,7 +615,7 @@ ultra2_dmafifoflush: ...@@ -615,7 +615,7 @@ ultra2_dmafifoflush:
* went empty and the next bit of data is copied from * went empty and the next bit of data is copied from
* the SCSI fifo into the PCI fifo. It should only * the SCSI fifo into the PCI fifo. It should only
* come on when both FIFOs (meaning the entire FIFO * come on when both FIFOs (meaning the entire FIFO
* chain) are emtpy. Since it can take up to 4 cycles * chain) are empty. Since it can take up to 4 cycles
* for new data to be copied from the SCSI fifo into * for new data to be copied from the SCSI fifo into
* the PCI fifo, testing for FIFOEMP status for 4 * the PCI fifo, testing for FIFOEMP status for 4
* extra times gives the needed time for any * extra times gives the needed time for any
......
...@@ -81,7 +81,7 @@ nwpserial_console_write(struct console *co, const char *s, unsigned int count) ...@@ -81,7 +81,7 @@ nwpserial_console_write(struct console *co, const char *s, unsigned int count)
uart_console_write(&up->port, s, count, nwpserial_console_putchar); uart_console_write(&up->port, s, count, nwpserial_console_putchar);
/* wait for transmitter to become emtpy */ /* wait for transmitter to become empty */
while ((dcr_read(up->dcr_host, UART_LSR) & UART_LSR_THRE) == 0) while ((dcr_read(up->dcr_host, UART_LSR) & UART_LSR_THRE) == 0)
cpu_relax(); cpu_relax();
......
...@@ -636,7 +636,7 @@ static int hw_rule_period_time(struct snd_pcm_hw_params *params, ...@@ -636,7 +636,7 @@ static int hw_rule_period_time(struct snd_pcm_hw_params *params,
min_datainterval = min(min_datainterval, fp->datainterval); min_datainterval = min(min_datainterval, fp->datainterval);
} }
if (min_datainterval == 0xff) { if (min_datainterval == 0xff) {
hwc_debug(" --> get emtpy\n"); hwc_debug(" --> get empty\n");
it->empty = 1; it->empty = 1;
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment