diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-10-19 17:10:43 -0400 |
---|---|---|
committer | Adrian Bunk <bunk@kernel.org> | 2007-10-19 17:10:43 -0400 |
commit | 3a4fa0a25da81600ea0bcd75692ae8ca6050d165 (patch) | |
tree | a4de1662e645c029cf3cf58f0646cbb1959861dc /sound/mips | |
parent | 18735dd8d2d37031b97f9e9e106acbaed01eb896 (diff) |
Fix misspellings of "system", "controller", "interrupt" and "necessary".
Fix the various misspellings of "system", controller", "interrupt" and
"[un]necessary".
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Diffstat (limited to 'sound/mips')
-rw-r--r-- | sound/mips/au1x00.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/mips/au1x00.c b/sound/mips/au1x00.c index 8a61a1191861..24460a558bf7 100644 --- a/sound/mips/au1x00.c +++ b/sound/mips/au1x00.c | |||
@@ -498,8 +498,8 @@ snd_au1000_ac97_read(struct snd_ac97 *ac97, unsigned short reg) | |||
498 | int i; | 498 | int i; |
499 | 499 | ||
500 | spin_lock(&au1000->ac97_lock); | 500 | spin_lock(&au1000->ac97_lock); |
501 | /* would rather use the interupt than this polling but it works and I can't | 501 | /* would rather use the interrupt than this polling but it works and I can't |
502 | get the interupt driven case to work efficiently */ | 502 | get the interrupt driven case to work efficiently */ |
503 | for (i = 0; i < 0x5000; i++) | 503 | for (i = 0; i < 0x5000; i++) |
504 | if (!(au1000->ac97_ioport->status & AC97C_CP)) | 504 | if (!(au1000->ac97_ioport->status & AC97C_CP)) |
505 | break; | 505 | break; |
@@ -535,8 +535,8 @@ snd_au1000_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short | |||
535 | int i; | 535 | int i; |
536 | 536 | ||
537 | spin_lock(&au1000->ac97_lock); | 537 | spin_lock(&au1000->ac97_lock); |
538 | /* would rather use the interupt than this polling but it works and I can't | 538 | /* would rather use the interrupt than this polling but it works and I can't |
539 | get the interupt driven case to work efficiently */ | 539 | get the interrupt driven case to work efficiently */ |
540 | for (i = 0; i < 0x5000; i++) | 540 | for (i = 0; i < 0x5000; i++) |
541 | if (!(au1000->ac97_ioport->status & AC97C_CP)) | 541 | if (!(au1000->ac97_ioport->status & AC97C_CP)) |
542 | break; | 542 | break; |