aboutsummaryrefslogtreecommitdiffstats
path: root/sound/isa/ad1848/ad1848_lib.c
diff options
context:
space:
mode:
authorRene Herman <rene.herman@gmail.com>2007-09-10 17:22:55 -0400
committerJaroslav Kysela <perex@perex.cz>2007-10-16 10:49:26 -0400
commitd44df2d0f22a688f4f3af3e0d6cbcf9a4516e1b5 (patch)
tree07e1c78a89cf1e2741529a573f4acc59bb495217 /sound/isa/ad1848/ad1848_lib.c
parentbc962efa6cd864d8bd29d2634da4ef14873d020c (diff)
[ALSA] ad1848/cs4231: replace commented out debug code with snd-printd{,d}
While I'm at it another 'while I'm there' -- replace commented out debug code with snd-printd{,d}. Signed-off-by: Rene Herman <rene.herman@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/isa/ad1848/ad1848_lib.c')
-rw-r--r--sound/isa/ad1848/ad1848_lib.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sound/isa/ad1848/ad1848_lib.c b/sound/isa/ad1848/ad1848_lib.c
index c10dfc10e67a..eee941be3b74 100644
--- a/sound/isa/ad1848/ad1848_lib.c
+++ b/sound/isa/ad1848/ad1848_lib.c
@@ -213,13 +213,14 @@ static void snd_ad1848_mce_down(struct snd_ad1848 *chip)
213 /* end of cleanup sequence */ 213 /* end of cleanup sequence */
214 for (timeout = 12000; timeout > 0 && (inb(AD1848P(chip, REGSEL)) & AD1848_INIT); timeout--) 214 for (timeout = 12000; timeout > 0 && (inb(AD1848P(chip, REGSEL)) & AD1848_INIT); timeout--)
215 udelay(100); 215 udelay(100);
216#if 0 216
217 printk("(1) timeout = %i\n", timeout); 217 snd_printdd("(1) timeout = %d\n", timeout);
218#endif 218
219#ifdef CONFIG_SND_DEBUG 219#ifdef CONFIG_SND_DEBUG
220 if (inb(AD1848P(chip, REGSEL)) & AD1848_INIT) 220 if (inb(AD1848P(chip, REGSEL)) & AD1848_INIT)
221 snd_printk(KERN_WARNING "mce_down [0x%lx] - auto calibration time out (0)\n", AD1848P(chip, REGSEL)); 221 snd_printk(KERN_WARNING "mce_down [0x%lx] - auto calibration time out (0)\n", AD1848P(chip, REGSEL));
222#endif 222#endif
223
223 chip->mce_bit &= ~AD1848_MCE; 224 chip->mce_bit &= ~AD1848_MCE;
224 timeout = inb(AD1848P(chip, REGSEL)); 225 timeout = inb(AD1848P(chip, REGSEL));
225 outb(chip->mce_bit | (timeout & 0x1f), AD1848P(chip, REGSEL)); 226 outb(chip->mce_bit | (timeout & 0x1f), AD1848P(chip, REGSEL));
@@ -236,9 +237,9 @@ static void snd_ad1848_mce_down(struct snd_ad1848 *chip)
236 * which at the slowest possible rate of 5.5125 kHz means 907 us. 237 * which at the slowest possible rate of 5.5125 kHz means 907 us.
237 */ 238 */
238 msleep(1); 239 msleep(1);
239#if 0 240
240 printk("(2) jiffies = %li\n", jiffies); 241 snd_printdd("(2) jiffies = %lu\n", jiffies);
241#endif 242
242 time = msecs_to_jiffies(250); 243 time = msecs_to_jiffies(250);
243 while (snd_ad1848_in(chip, AD1848_TEST_INIT) & AD1848_CALIB_IN_PROGRESS) { 244 while (snd_ad1848_in(chip, AD1848_TEST_INIT) & AD1848_CALIB_IN_PROGRESS) {
244 spin_unlock_irqrestore(&chip->reg_lock, flags); 245 spin_unlock_irqrestore(&chip->reg_lock, flags);
@@ -249,9 +250,9 @@ static void snd_ad1848_mce_down(struct snd_ad1848 *chip)
249 time = schedule_timeout(time); 250 time = schedule_timeout(time);
250 spin_lock_irqsave(&chip->reg_lock, flags); 251 spin_lock_irqsave(&chip->reg_lock, flags);
251 } 252 }
252#if 0 253
253 printk("(3) jiffies = %li\n", jiffies); 254 snd_printdd("(3) jiffies = %lu\n", jiffies);
254#endif 255
255 time = msecs_to_jiffies(100); 256 time = msecs_to_jiffies(100);
256 while (inb(AD1848P(chip, REGSEL)) & AD1848_INIT) { 257 while (inb(AD1848P(chip, REGSEL)) & AD1848_INIT) {
257 spin_unlock_irqrestore(&chip->reg_lock, flags); 258 spin_unlock_irqrestore(&chip->reg_lock, flags);
@@ -263,10 +264,9 @@ static void snd_ad1848_mce_down(struct snd_ad1848 *chip)
263 spin_lock_irqsave(&chip->reg_lock, flags); 264 spin_lock_irqsave(&chip->reg_lock, flags);
264 } 265 }
265 spin_unlock_irqrestore(&chip->reg_lock, flags); 266 spin_unlock_irqrestore(&chip->reg_lock, flags);
266#if 0 267
267 printk("(4) jiffies = %li\n", jiffies); 268 snd_printdd("(4) jiffies = %lu\n", jiffies);
268 snd_printk("mce_down - exit = 0x%x\n", inb(AD1848P(chip, REGSEL))); 269 snd_printd("mce_down - exit = 0x%x\n", inb(AD1848P(chip, REGSEL)));
269#endif
270} 270}
271 271
272static unsigned int snd_ad1848_get_count(unsigned char format, 272static unsigned int snd_ad1848_get_count(unsigned char format,