Re: [PATCH] sound/: Spelling fixes

2007-12-18 Thread Takashi Iwai
At Mon, 17 Dec 2007 11:40:38 -0800,
Joe Perches wrote:
> 
> 
> Signed-off-by: Joe Perches <[EMAIL PROTECTED]>
> ---
>  sound/drivers/serial-u16550.c|6 ++--
>  sound/isa/es18xx.c   |2 +-
>  sound/pci/au88x0/au88x0_core.c   |2 +-
>  sound/pci/cs46xx/cs46xx_lib.c|2 +-
>  sound/pci/hda/hda_codec.h|2 +-
>  sound/pci/rme9652/hdsp.c |2 +-
>  sound/pci/rme9652/hdspm.c|4 +-
>  sound/pci/rme9652/rme9652.c  |4 +-
>  sound/pci/trident/trident_main.c |   44 
> +++---
>  9 files changed, 34 insertions(+), 34 deletions(-)

Applied to ALSA tree now.  Thanks.


Takashi
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] sound/: Spelling fixes

2007-12-17 Thread Joe Perches

Signed-off-by: Joe Perches <[EMAIL PROTECTED]>
---
 sound/drivers/serial-u16550.c|6 ++--
 sound/isa/es18xx.c   |2 +-
 sound/pci/au88x0/au88x0_core.c   |2 +-
 sound/pci/cs46xx/cs46xx_lib.c|2 +-
 sound/pci/hda/hda_codec.h|2 +-
 sound/pci/rme9652/hdsp.c |2 +-
 sound/pci/rme9652/hdspm.c|4 +-
 sound/pci/rme9652/rme9652.c  |4 +-
 sound/pci/trident/trident_main.c |   44 +++---
 9 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/sound/drivers/serial-u16550.c b/sound/drivers/serial-u16550.c
index 65de3a7..3958dbd 100644
--- a/sound/drivers/serial-u16550.c
+++ b/sound/drivers/serial-u16550.c
@@ -455,7 +455,7 @@ static void snd_uart16550_do_open(struct snd_uart16550 * 
uart)
| UART_IER_THRI /* Enable Transmitter holding register 
empty interrupt */
;
}
-   outb(byte, uart->base + UART_IER);  /* Interupt enable Register */
+   outb(byte, uart->base + UART_IER);  /* Interrupt enable Register */
 
inb(uart->base + UART_LSR); /* Clear any pre-existing overrun 
indication */
inb(uart->base + UART_IIR); /* Clear any pre-existing transmit 
interrupt */
@@ -473,7 +473,7 @@ static void snd_uart16550_do_close(struct snd_uart16550 * 
uart)
 
outb((0 & UART_IER_RDI) /* Disable Receiver data interrupt */
 |(0 & UART_IER_THRI)   /* Disable Transmitter holding register 
empty interrupt */
-,uart->base + UART_IER);   /* Interupt enable Register */
+,uart->base + UART_IER);   /* Interrupt enable Register */
 
switch (uart->adaptor) {
default:
@@ -653,7 +653,7 @@ static void snd_uart16550_output_write(struct 
snd_rawmidi_substream *substream)
char first;
static unsigned long lasttime = 0;

-   /* Interupts are disabled during the updating of the tx_buff,
+   /* Interrupts are disabled during the updating of the tx_buff,
 * since it is 'bad' to have two processes updating the same
 * variables (ie buff_in & buff_out)
 */
diff --git a/sound/isa/es18xx.c b/sound/isa/es18xx.c
index c1af28f..5f927ad 100644
--- a/sound/isa/es18xx.c
+++ b/sound/isa/es18xx.c
@@ -163,7 +163,7 @@ struct snd_audiodrive {
 #define ES18XX_DUPLEX_SAME 0x0010  /* Playback and record must share the 
same rate */
 #define ES18XX_NEW_RATE0x0020  /* More precise rate setting */
 #define ES18XX_AUXB0x0040  /* AuxB mixer control */
-#define ES18XX_HWV 0x0080  /* Has seperate hardware volume mixer controls*/
+#define ES18XX_HWV 0x0080  /* Has separate hardware volume mixer controls*/
 #define ES18XX_MONO0x0100  /* Mono_in mixer control */
 #define ES18XX_I2S 0x0200  /* I2S mixer control */
 #define ES18XX_MUTEREC 0x0400  /* Record source can be muted */
diff --git a/sound/pci/au88x0/au88x0_core.c b/sound/pci/au88x0/au88x0_core.c
index 4a336ea..333c62d 100644
--- a/sound/pci/au88x0/au88x0_core.c
+++ b/sound/pci/au88x0/au88x0_core.c
@@ -2395,7 +2395,7 @@ static irqreturn_t vortex_interrupt(int irq, void *dev_id)
if (!(hwread(vortex->mmio, VORTEX_STAT) & 0x1))
return IRQ_NONE;
 
-   // This is the Interrrupt Enable flag we set before (consistency check).
+   // This is the Interrupt Enable flag we set before (consistency check).
if (!(hwread(vortex->mmio, VORTEX_CTRL) & CTRL_IRQ_ENABLE))
return IRQ_NONE;
 
diff --git a/sound/pci/cs46xx/cs46xx_lib.c b/sound/pci/cs46xx/cs46xx_lib.c
index 2c7bfc9..c004fa8 100644
--- a/sound/pci/cs46xx/cs46xx_lib.c
+++ b/sound/pci/cs46xx/cs46xx_lib.c
@@ -8,7 +8,7 @@
  *- Sometimes the SPDIF input DSP tasks get's unsynchronized
  *  and the SPDIF get somewhat "distorcionated", or/and left right channel
  *  are swapped. To get around this problem when it happens, mute and 
unmute 
- *  the SPDIF input mixer controll.
+ *  the SPDIF input mixer control.
  *- On the Hercules Game Theater XP the amplifier are sometimes turned
  *  off on inadecuate moments which causes distorcions on sound.
  *
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h
index 2bce925..5bd44ac 100644
--- a/sound/pci/hda/hda_codec.h
+++ b/sound/pci/hda/hda_codec.h
@@ -417,7 +417,7 @@ struct hda_bus_ops {
/* free the private data */
void (*private_free)(struct hda_bus *);
 #ifdef CONFIG_SND_HDA_POWER_SAVE
-   /* notify power-up/down from codec to contoller */
+   /* notify power-up/down from codec to controller */
void (*pm_notify)(struct hda_codec *codec);
 #endif
 };
diff --git a/sound/pci/rme9652/hdsp.c b/sound/pci/rme9652/hdsp.c
index ff26a36..263cd16 100644
--- a/sound/pci/rme9652/hdsp.c
+++ b/sound/pci/rme9652/hdsp.c
@@ -3606,7 +3606,7 @@ static int snd_hdsp_set_defaults(struct hdsp *hdsp)
 
/* ASSUMPTION: hdsp->lock is either held, or
   there is no need