diff options
| author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 09:47:51 -0500 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2009-02-05 09:48:34 -0500 |
| commit | 4c9f1d3ed7e5f910b66dc4d1456cfac17e58cf0e (patch) | |
| tree | e9b30797bd87ef0b9ef5a812d803e47c43ba9afb | |
| parent | 91f050604cc045a0b7aa0460d36eb6e0f0cb301a (diff) | |
ALSA: isa/*: Add missing KERN_* prefix to printk
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/isa/ad1816a/ad1816a_lib.c | 6 | ||||
| -rw-r--r-- | sound/isa/cs423x/cs4236_lib.c | 21 | ||||
| -rw-r--r-- | sound/isa/es1688/es1688_lib.c | 23 | ||||
| -rw-r--r-- | sound/isa/opl3sa2.c | 10 | ||||
| -rw-r--r-- | sound/isa/opti9xx/opti92x-ad1848.c | 30 | ||||
| -rw-r--r-- | sound/isa/wavefront/wavefront.c | 4 | ||||
| -rw-r--r-- | sound/isa/wavefront/wavefront_synth.c | 2 |
7 files changed, 59 insertions, 37 deletions
diff --git a/sound/isa/ad1816a/ad1816a_lib.c b/sound/isa/ad1816a/ad1816a_lib.c index 1c9e01ecac0b..05aef8b97e96 100644 --- a/sound/isa/ad1816a/ad1816a_lib.c +++ b/sound/isa/ad1816a/ad1816a_lib.c | |||
| @@ -37,7 +37,7 @@ static inline int snd_ad1816a_busy_wait(struct snd_ad1816a *chip) | |||
| 37 | if (inb(AD1816A_REG(AD1816A_CHIP_STATUS)) & AD1816A_READY) | 37 | if (inb(AD1816A_REG(AD1816A_CHIP_STATUS)) & AD1816A_READY) |
| 38 | return 0; | 38 | return 0; |
| 39 | 39 | ||
| 40 | snd_printk("chip busy.\n"); | 40 | snd_printk(KERN_WARNING "chip busy.\n"); |
| 41 | return -EBUSY; | 41 | return -EBUSY; |
| 42 | } | 42 | } |
| 43 | 43 | ||
| @@ -196,7 +196,7 @@ static int snd_ad1816a_trigger(struct snd_ad1816a *chip, unsigned char what, | |||
| 196 | spin_unlock(&chip->lock); | 196 | spin_unlock(&chip->lock); |
| 197 | break; | 197 | break; |
| 198 | default: | 198 | default: |
| 199 | snd_printk("invalid trigger mode 0x%x.\n", what); | 199 | snd_printk(KERN_WARNING "invalid trigger mode 0x%x.\n", what); |
| 200 | error = -EINVAL; | 200 | error = -EINVAL; |
| 201 | } | 201 | } |
| 202 | 202 | ||
| @@ -565,7 +565,7 @@ static const char __devinit *snd_ad1816a_chip_id(struct snd_ad1816a *chip) | |||
| 565 | case AD1816A_HW_AD1815: return "AD1815"; | 565 | case AD1816A_HW_AD1815: return "AD1815"; |
| 566 | case AD1816A_HW_AD18MAX10: return "AD18max10"; | 566 | case AD1816A_HW_AD18MAX10: return "AD18max10"; |
| 567 | default: | 567 | default: |
| 568 | snd_printk("Unknown chip version %d:%d.\n", | 568 | snd_printk(KERN_WARNING "Unknown chip version %d:%d.\n", |
| 569 | chip->version, chip->hardware); | 569 | chip->version, chip->hardware); |
| 570 | return "AD1816A - unknown"; | 570 | return "AD1816A - unknown"; |
| 571 | } | 571 | } |
diff --git a/sound/isa/cs423x/cs4236_lib.c b/sound/isa/cs423x/cs4236_lib.c index 6a85fdc53b60..2406efdfd8dd 100644 --- a/sound/isa/cs423x/cs4236_lib.c +++ b/sound/isa/cs423x/cs4236_lib.c | |||
| @@ -286,7 +286,8 @@ int snd_cs4236_create(struct snd_card *card, | |||
| 286 | if (hardware == WSS_HW_DETECT) | 286 | if (hardware == WSS_HW_DETECT) |
| 287 | hardware = WSS_HW_DETECT3; | 287 | hardware = WSS_HW_DETECT3; |
| 288 | if (cport < 0x100) { | 288 | if (cport < 0x100) { |
| 289 | snd_printk("please, specify control port for CS4236+ chips\n"); | 289 | snd_printk(KERN_ERR "please, specify control port " |
| 290 | "for CS4236+ chips\n"); | ||
| 290 | return -ENODEV; | 291 | return -ENODEV; |
| 291 | } | 292 | } |
| 292 | err = snd_wss_create(card, port, cport, | 293 | err = snd_wss_create(card, port, cport, |
| @@ -295,7 +296,8 @@ int snd_cs4236_create(struct snd_card *card, | |||
| 295 | return err; | 296 | return err; |
| 296 | 297 | ||
| 297 | if (!(chip->hardware & WSS_HW_CS4236B_MASK)) { | 298 | if (!(chip->hardware & WSS_HW_CS4236B_MASK)) { |
| 298 | snd_printk("CS4236+: MODE3 and extended registers not available, hardware=0x%x\n",chip->hardware); | 299 | snd_printk(KERN_ERR "CS4236+: MODE3 and extended registers " |
| 300 | "not available, hardware=0x%x\n", chip->hardware); | ||
| 299 | snd_device_free(card, chip); | 301 | snd_device_free(card, chip); |
| 300 | return -ENODEV; | 302 | return -ENODEV; |
| 301 | } | 303 | } |
| @@ -303,16 +305,19 @@ int snd_cs4236_create(struct snd_card *card, | |||
| 303 | { | 305 | { |
| 304 | int idx; | 306 | int idx; |
| 305 | for (idx = 0; idx < 8; idx++) | 307 | for (idx = 0; idx < 8; idx++) |
| 306 | snd_printk("CD%i = 0x%x\n", idx, inb(chip->cport + idx)); | 308 | snd_printk(KERN_DEBUG "CD%i = 0x%x\n", |
| 309 | idx, inb(chip->cport + idx)); | ||
| 307 | for (idx = 0; idx < 9; idx++) | 310 | for (idx = 0; idx < 9; idx++) |
| 308 | snd_printk("C%i = 0x%x\n", idx, snd_cs4236_ctrl_in(chip, idx)); | 311 | snd_printk(KERN_DEBUG "C%i = 0x%x\n", |
| 312 | idx, snd_cs4236_ctrl_in(chip, idx)); | ||
| 309 | } | 313 | } |
| 310 | #endif | 314 | #endif |
| 311 | ver1 = snd_cs4236_ctrl_in(chip, 1); | 315 | ver1 = snd_cs4236_ctrl_in(chip, 1); |
| 312 | ver2 = snd_cs4236_ext_in(chip, CS4236_VERSION); | 316 | ver2 = snd_cs4236_ext_in(chip, CS4236_VERSION); |
| 313 | snd_printdd("CS4236: [0x%lx] C1 (version) = 0x%x, ext = 0x%x\n", cport, ver1, ver2); | 317 | snd_printdd("CS4236: [0x%lx] C1 (version) = 0x%x, ext = 0x%x\n", cport, ver1, ver2); |
| 314 | if (ver1 != ver2) { | 318 | if (ver1 != ver2) { |
| 315 | snd_printk("CS4236+ chip detected, but control port 0x%lx is not valid\n", cport); | 319 | snd_printk(KERN_ERR "CS4236+ chip detected, but " |
| 320 | "control port 0x%lx is not valid\n", cport); | ||
| 316 | snd_device_free(card, chip); | 321 | snd_device_free(card, chip); |
| 317 | return -ENODEV; | 322 | return -ENODEV; |
| 318 | } | 323 | } |
| @@ -883,7 +888,8 @@ static int snd_cs4236_get_iec958_switch(struct snd_kcontrol *kcontrol, struct sn | |||
| 883 | spin_lock_irqsave(&chip->reg_lock, flags); | 888 | spin_lock_irqsave(&chip->reg_lock, flags); |
| 884 | ucontrol->value.integer.value[0] = chip->image[CS4231_ALT_FEATURE_1] & 0x02 ? 1 : 0; | 889 | ucontrol->value.integer.value[0] = chip->image[CS4231_ALT_FEATURE_1] & 0x02 ? 1 : 0; |
| 885 | #if 0 | 890 | #if 0 |
| 886 | printk("get valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n", | 891 | printk(KERN_DEBUG "get valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, " |
| 892 | "C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n", | ||
| 887 | snd_wss_in(chip, CS4231_ALT_FEATURE_1), | 893 | snd_wss_in(chip, CS4231_ALT_FEATURE_1), |
| 888 | snd_cs4236_ctrl_in(chip, 3), | 894 | snd_cs4236_ctrl_in(chip, 3), |
| 889 | snd_cs4236_ctrl_in(chip, 4), | 895 | snd_cs4236_ctrl_in(chip, 4), |
| @@ -920,7 +926,8 @@ static int snd_cs4236_put_iec958_switch(struct snd_kcontrol *kcontrol, struct sn | |||
| 920 | mutex_unlock(&chip->mce_mutex); | 926 | mutex_unlock(&chip->mce_mutex); |
| 921 | 927 | ||
| 922 | #if 0 | 928 | #if 0 |
| 923 | printk("set valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n", | 929 | printk(KERN_DEBUG "set valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, " |
| 930 | "C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n", | ||
| 924 | snd_wss_in(chip, CS4231_ALT_FEATURE_1), | 931 | snd_wss_in(chip, CS4231_ALT_FEATURE_1), |
| 925 | snd_cs4236_ctrl_in(chip, 3), | 932 | snd_cs4236_ctrl_in(chip, 3), |
| 926 | snd_cs4236_ctrl_in(chip, 4), | 933 | snd_cs4236_ctrl_in(chip, 4), |
diff --git a/sound/isa/es1688/es1688_lib.c b/sound/isa/es1688/es1688_lib.c index 4fbb508a817f..4c6e14f87f2d 100644 --- a/sound/isa/es1688/es1688_lib.c +++ b/sound/isa/es1688/es1688_lib.c | |||
| @@ -45,7 +45,7 @@ static int snd_es1688_dsp_command(struct snd_es1688 *chip, unsigned char val) | |||
| 45 | return 1; | 45 | return 1; |
| 46 | } | 46 | } |
| 47 | #ifdef CONFIG_SND_DEBUG | 47 | #ifdef CONFIG_SND_DEBUG |
| 48 | printk("snd_es1688_dsp_command: timeout (0x%x)\n", val); | 48 | printk(KERN_DEBUG "snd_es1688_dsp_command: timeout (0x%x)\n", val); |
| 49 | #endif | 49 | #endif |
| 50 | return 0; | 50 | return 0; |
| 51 | } | 51 | } |
| @@ -167,13 +167,16 @@ static int snd_es1688_probe(struct snd_es1688 *chip) | |||
| 167 | hw = ES1688_HW_AUTO; | 167 | hw = ES1688_HW_AUTO; |
| 168 | switch (chip->version & 0xfff0) { | 168 | switch (chip->version & 0xfff0) { |
| 169 | case 0x4880: | 169 | case 0x4880: |
| 170 | snd_printk("[0x%lx] ESS: AudioDrive ES488 detected, but driver is in another place\n", chip->port); | 170 | snd_printk(KERN_ERR "[0x%lx] ESS: AudioDrive ES488 detected, " |
| 171 | "but driver is in another place\n", chip->port); | ||
| 171 | return -ENODEV; | 172 | return -ENODEV; |
| 172 | case 0x6880: | 173 | case 0x6880: |
| 173 | hw = (chip->version & 0x0f) >= 8 ? ES1688_HW_1688 : ES1688_HW_688; | 174 | hw = (chip->version & 0x0f) >= 8 ? ES1688_HW_1688 : ES1688_HW_688; |
| 174 | break; | 175 | break; |
| 175 | default: | 176 | default: |
| 176 | snd_printk("[0x%lx] ESS: unknown AudioDrive chip with version 0x%x (Jazz16 soundcard?)\n", chip->port, chip->version); | 177 | snd_printk(KERN_ERR "[0x%lx] ESS: unknown AudioDrive chip " |
| 178 | "with version 0x%x (Jazz16 soundcard?)\n", | ||
| 179 | chip->port, chip->version); | ||
| 177 | return -ENODEV; | 180 | return -ENODEV; |
| 178 | } | 181 | } |
| 179 | 182 | ||
| @@ -223,7 +226,7 @@ static int snd_es1688_init(struct snd_es1688 * chip, int enable) | |||
| 223 | } | 226 | } |
| 224 | } | 227 | } |
| 225 | #if 0 | 228 | #if 0 |
| 226 | snd_printk("mpu cfg = 0x%x\n", cfg); | 229 | snd_printk(KERN_DEBUG "mpu cfg = 0x%x\n", cfg); |
| 227 | #endif | 230 | #endif |
| 228 | spin_lock_irqsave(&chip->reg_lock, flags); | 231 | spin_lock_irqsave(&chip->reg_lock, flags); |
| 229 | snd_es1688_mixer_write(chip, 0x40, cfg); | 232 | snd_es1688_mixer_write(chip, 0x40, cfg); |
| @@ -237,7 +240,9 @@ static int snd_es1688_init(struct snd_es1688 * chip, int enable) | |||
| 237 | cfg = 0xf0; /* enable only DMA counter interrupt */ | 240 | cfg = 0xf0; /* enable only DMA counter interrupt */ |
| 238 | irq_bits = irqs[chip->irq & 0x0f]; | 241 | irq_bits = irqs[chip->irq & 0x0f]; |
| 239 | if (irq_bits < 0) { | 242 | if (irq_bits < 0) { |
| 240 | snd_printk("[0x%lx] ESS: bad IRQ %d for ES1688 chip!!\n", chip->port, chip->irq); | 243 | snd_printk(KERN_ERR "[0x%lx] ESS: bad IRQ %d " |
| 244 | "for ES1688 chip!!\n", | ||
| 245 | chip->port, chip->irq); | ||
| 241 | #if 0 | 246 | #if 0 |
| 242 | irq_bits = 0; | 247 | irq_bits = 0; |
| 243 | cfg = 0x10; | 248 | cfg = 0x10; |
| @@ -250,7 +255,8 @@ static int snd_es1688_init(struct snd_es1688 * chip, int enable) | |||
| 250 | cfg = 0xf0; /* extended mode DMA enable */ | 255 | cfg = 0xf0; /* extended mode DMA enable */ |
| 251 | dma = chip->dma8; | 256 | dma = chip->dma8; |
| 252 | if (dma > 3 || dma == 2) { | 257 | if (dma > 3 || dma == 2) { |
| 253 | snd_printk("[0x%lx] ESS: bad DMA channel %d for ES1688 chip!!\n", chip->port, dma); | 258 | snd_printk(KERN_ERR "[0x%lx] ESS: bad DMA channel %d " |
| 259 | "for ES1688 chip!!\n", chip->port, dma); | ||
| 254 | #if 0 | 260 | #if 0 |
| 255 | dma_bits = 0; | 261 | dma_bits = 0; |
| 256 | cfg = 0x00; /* disable all DMA */ | 262 | cfg = 0x00; /* disable all DMA */ |
| @@ -341,8 +347,9 @@ static int snd_es1688_trigger(struct snd_es1688 *chip, int cmd, unsigned char va | |||
| 341 | return -EINVAL; /* something is wrong */ | 347 | return -EINVAL; /* something is wrong */ |
| 342 | } | 348 | } |
| 343 | #if 0 | 349 | #if 0 |
| 344 | printk("trigger: val = 0x%x, value = 0x%x\n", val, value); | 350 | printk(KERN_DEBUG "trigger: val = 0x%x, value = 0x%x\n", val, value); |
| 345 | printk("trigger: pointer = 0x%x\n", snd_dma_pointer(chip->dma8, chip->dma_size)); | 351 | printk(KERN_DEBUG "trigger: pointer = 0x%x\n", |
| 352 | snd_dma_pointer(chip->dma8, chip->dma_size)); | ||
| 346 | #endif | 353 | #endif |
| 347 | snd_es1688_write(chip, 0xb8, (val & 0xf0) | value); | 354 | snd_es1688_write(chip, 0xb8, (val & 0xf0) | value); |
| 348 | spin_unlock(&chip->reg_lock); | 355 | spin_unlock(&chip->reg_lock); |
diff --git a/sound/isa/opl3sa2.c b/sound/isa/opl3sa2.c index 58c972b2af03..06810dfb9d9a 100644 --- a/sound/isa/opl3sa2.c +++ b/sound/isa/opl3sa2.c | |||
| @@ -179,12 +179,13 @@ static unsigned char __snd_opl3sa2_read(struct snd_opl3sa2 *chip, unsigned char | |||
| 179 | unsigned char result; | 179 | unsigned char result; |
| 180 | #if 0 | 180 | #if 0 |
| 181 | outb(0x1d, port); /* password */ | 181 | outb(0x1d, port); /* password */ |
| 182 | printk("read [0x%lx] = 0x%x\n", port, inb(port)); | 182 | printk(KERN_DEBUG "read [0x%lx] = 0x%x\n", port, inb(port)); |
| 183 | #endif | 183 | #endif |
| 184 | outb(reg, chip->port); /* register */ | 184 | outb(reg, chip->port); /* register */ |
| 185 | result = inb(chip->port + 1); | 185 | result = inb(chip->port + 1); |
| 186 | #if 0 | 186 | #if 0 |
| 187 | printk("read [0x%lx] = 0x%x [0x%x]\n", port, result, inb(port)); | 187 | printk(KERN_DEBUG "read [0x%lx] = 0x%x [0x%x]\n", |
| 188 | port, result, inb(port)); | ||
| 188 | #endif | 189 | #endif |
| 189 | return result; | 190 | return result; |
| 190 | } | 191 | } |
| @@ -233,7 +234,10 @@ static int __devinit snd_opl3sa2_detect(struct snd_card *card) | |||
| 233 | snd_printk(KERN_ERR PFX "can't grab port 0x%lx\n", port); | 234 | snd_printk(KERN_ERR PFX "can't grab port 0x%lx\n", port); |
| 234 | return -EBUSY; | 235 | return -EBUSY; |
| 235 | } | 236 | } |
| 236 | // snd_printk("REG 0A = 0x%x\n", snd_opl3sa2_read(chip, 0x0a)); | 237 | /* |
| 238 | snd_printk(KERN_DEBUG "REG 0A = 0x%x\n", | ||
| 239 | snd_opl3sa2_read(chip, 0x0a)); | ||
| 240 | */ | ||
| 237 | chip->version = 0; | 241 | chip->version = 0; |
| 238 | tmp = snd_opl3sa2_read(chip, OPL3SA2_MISC); | 242 | tmp = snd_opl3sa2_read(chip, OPL3SA2_MISC); |
| 239 | if (tmp == 0xff) { | 243 | if (tmp == 0xff) { |
diff --git a/sound/isa/opti9xx/opti92x-ad1848.c b/sound/isa/opti9xx/opti92x-ad1848.c index 5deb7e69a029..d5bc0e03132a 100644 --- a/sound/isa/opti9xx/opti92x-ad1848.c +++ b/sound/isa/opti9xx/opti92x-ad1848.c | |||
| @@ -252,7 +252,7 @@ static int __devinit snd_opti9xx_init(struct snd_opti9xx *chip, | |||
| 252 | #endif /* OPTi93X */ | 252 | #endif /* OPTi93X */ |
| 253 | 253 | ||
| 254 | default: | 254 | default: |
| 255 | snd_printk("chip %d not supported\n", hardware); | 255 | snd_printk(KERN_ERR "chip %d not supported\n", hardware); |
| 256 | return -ENODEV; | 256 | return -ENODEV; |
| 257 | } | 257 | } |
| 258 | return 0; | 258 | return 0; |
| @@ -294,7 +294,7 @@ static unsigned char snd_opti9xx_read(struct snd_opti9xx *chip, | |||
| 294 | #endif /* OPTi93X */ | 294 | #endif /* OPTi93X */ |
| 295 | 295 | ||
| 296 | default: | 296 | default: |
| 297 | snd_printk("chip %d not supported\n", chip->hardware); | 297 | snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware); |
| 298 | } | 298 | } |
| 299 | 299 | ||
| 300 | spin_unlock_irqrestore(&chip->lock, flags); | 300 | spin_unlock_irqrestore(&chip->lock, flags); |
| @@ -336,7 +336,7 @@ static void snd_opti9xx_write(struct snd_opti9xx *chip, unsigned char reg, | |||
| 336 | #endif /* OPTi93X */ | 336 | #endif /* OPTi93X */ |
| 337 | 337 | ||
| 338 | default: | 338 | default: |
| 339 | snd_printk("chip %d not supported\n", chip->hardware); | 339 | snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware); |
| 340 | } | 340 | } |
| 341 | 341 | ||
| 342 | spin_unlock_irqrestore(&chip->lock, flags); | 342 | spin_unlock_irqrestore(&chip->lock, flags); |
| @@ -412,7 +412,7 @@ static int __devinit snd_opti9xx_configure(struct snd_opti9xx *chip) | |||
| 412 | #endif /* OPTi93X */ | 412 | #endif /* OPTi93X */ |
| 413 | 413 | ||
| 414 | default: | 414 | default: |
| 415 | snd_printk("chip %d not supported\n", chip->hardware); | 415 | snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware); |
| 416 | return -EINVAL; | 416 | return -EINVAL; |
| 417 | } | 417 | } |
| 418 | 418 | ||
| @@ -430,7 +430,8 @@ static int __devinit snd_opti9xx_configure(struct snd_opti9xx *chip) | |||
| 430 | wss_base_bits = 0x02; | 430 | wss_base_bits = 0x02; |
| 431 | break; | 431 | break; |
| 432 | default: | 432 | default: |
| 433 | snd_printk("WSS port 0x%lx not valid\n", chip->wss_base); | 433 | snd_printk(KERN_WARNING "WSS port 0x%lx not valid\n", |
| 434 | chip->wss_base); | ||
| 434 | goto __skip_base; | 435 | goto __skip_base; |
| 435 | } | 436 | } |
| 436 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), wss_base_bits << 4, 0x30); | 437 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), wss_base_bits << 4, 0x30); |
| @@ -455,7 +456,7 @@ __skip_base: | |||
| 455 | irq_bits = 0x04; | 456 | irq_bits = 0x04; |
| 456 | break; | 457 | break; |
| 457 | default: | 458 | default: |
| 458 | snd_printk("WSS irq # %d not valid\n", chip->irq); | 459 | snd_printk(KERN_WARNING "WSS irq # %d not valid\n", chip->irq); |
| 459 | goto __skip_resources; | 460 | goto __skip_resources; |
| 460 | } | 461 | } |
| 461 | 462 | ||
| @@ -470,13 +471,14 @@ __skip_base: | |||
| 470 | dma_bits = 0x03; | 471 | dma_bits = 0x03; |
| 471 | break; | 472 | break; |
| 472 | default: | 473 | default: |
| 473 | snd_printk("WSS dma1 # %d not valid\n", chip->dma1); | 474 | snd_printk(KERN_WARNING "WSS dma1 # %d not valid\n", |
| 475 | chip->dma1); | ||
| 474 | goto __skip_resources; | 476 | goto __skip_resources; |
| 475 | } | 477 | } |
| 476 | 478 | ||
| 477 | #if defined(CS4231) || defined(OPTi93X) | 479 | #if defined(CS4231) || defined(OPTi93X) |
| 478 | if (chip->dma1 == chip->dma2) { | 480 | if (chip->dma1 == chip->dma2) { |
| 479 | snd_printk("don't want to share dmas\n"); | 481 | snd_printk(KERN_ERR "don't want to share dmas\n"); |
| 480 | return -EBUSY; | 482 | return -EBUSY; |
| 481 | } | 483 | } |
| 482 | 484 | ||
| @@ -485,7 +487,8 @@ __skip_base: | |||
| 485 | case 1: | 487 | case 1: |
| 486 | break; | 488 | break; |
| 487 | default: | 489 | default: |
| 488 | snd_printk("WSS dma2 # %d not valid\n", chip->dma2); | 490 | snd_printk(KERN_WARNING "WSS dma2 # %d not valid\n", |
| 491 | chip->dma2); | ||
| 489 | goto __skip_resources; | 492 | goto __skip_resources; |
| 490 | } | 493 | } |
| 491 | dma_bits |= 0x04; | 494 | dma_bits |= 0x04; |
| @@ -516,7 +519,8 @@ __skip_resources: | |||
| 516 | mpu_port_bits = 0x00; | 519 | mpu_port_bits = 0x00; |
| 517 | break; | 520 | break; |
| 518 | default: | 521 | default: |
| 519 | snd_printk("MPU-401 port 0x%lx not valid\n", | 522 | snd_printk(KERN_WARNING |
| 523 | "MPU-401 port 0x%lx not valid\n", | ||
| 520 | chip->mpu_port); | 524 | chip->mpu_port); |
| 521 | goto __skip_mpu; | 525 | goto __skip_mpu; |
| 522 | } | 526 | } |
| @@ -535,7 +539,7 @@ __skip_resources: | |||
| 535 | mpu_irq_bits = 0x01; | 539 | mpu_irq_bits = 0x01; |
| 536 | break; | 540 | break; |
| 537 | default: | 541 | default: |
| 538 | snd_printk("MPU-401 irq # %d not valid\n", | 542 | snd_printk(KERN_WARNING "MPU-401 irq # %d not valid\n", |
| 539 | chip->mpu_irq); | 543 | chip->mpu_irq); |
| 540 | goto __skip_mpu; | 544 | goto __skip_mpu; |
| 541 | } | 545 | } |
| @@ -726,7 +730,7 @@ static int __devinit snd_opti9xx_probe(struct snd_card *card) | |||
| 726 | if (chip->wss_base == SNDRV_AUTO_PORT) { | 730 | if (chip->wss_base == SNDRV_AUTO_PORT) { |
| 727 | chip->wss_base = snd_legacy_find_free_ioport(possible_ports, 4); | 731 | chip->wss_base = snd_legacy_find_free_ioport(possible_ports, 4); |
| 728 | if (chip->wss_base < 0) { | 732 | if (chip->wss_base < 0) { |
| 729 | snd_printk("unable to find a free WSS port\n"); | 733 | snd_printk(KERN_ERR "unable to find a free WSS port\n"); |
| 730 | return -EBUSY; | 734 | return -EBUSY; |
| 731 | } | 735 | } |
| 732 | } | 736 | } |
| @@ -891,7 +895,7 @@ static int __devinit snd_opti9xx_isa_probe(struct device *devptr, | |||
| 891 | #if defined(CS4231) || defined(OPTi93X) | 895 | #if defined(CS4231) || defined(OPTi93X) |
| 892 | if (dma2 == SNDRV_AUTO_DMA) { | 896 | if (dma2 == SNDRV_AUTO_DMA) { |
| 893 | if ((dma2 = snd_legacy_find_free_dma(possible_dma2s[dma1 % 4])) < 0) { | 897 | if ((dma2 = snd_legacy_find_free_dma(possible_dma2s[dma1 % 4])) < 0) { |
| 894 | snd_printk("unable to find a free DMA2\n"); | 898 | snd_printk(KERN_ERR "unable to find a free DMA2\n"); |
| 895 | return -EBUSY; | 899 | return -EBUSY; |
| 896 | } | 900 | } |
| 897 | } | 901 | } |
diff --git a/sound/isa/wavefront/wavefront.c b/sound/isa/wavefront/wavefront.c index 4c095bc7c729..c280e6220aee 100644 --- a/sound/isa/wavefront/wavefront.c +++ b/sound/isa/wavefront/wavefront.c | |||
| @@ -551,11 +551,11 @@ static int __devinit snd_wavefront_isa_match(struct device *pdev, | |||
| 551 | return 0; | 551 | return 0; |
| 552 | #endif | 552 | #endif |
| 553 | if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) { | 553 | if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) { |
| 554 | snd_printk("specify CS4232 port\n"); | 554 | snd_printk(KERN_ERR "specify CS4232 port\n"); |
| 555 | return 0; | 555 | return 0; |
| 556 | } | 556 | } |
| 557 | if (ics2115_port[dev] == SNDRV_AUTO_PORT) { | 557 | if (ics2115_port[dev] == SNDRV_AUTO_PORT) { |
| 558 | snd_printk("specify ICS2115 port\n"); | 558 | snd_printk(KERN_ERR "specify ICS2115 port\n"); |
| 559 | return 0; | 559 | return 0; |
| 560 | } | 560 | } |
| 561 | return 1; | 561 | return 1; |
diff --git a/sound/isa/wavefront/wavefront_synth.c b/sound/isa/wavefront/wavefront_synth.c index 4c410820a994..beb312cca75b 100644 --- a/sound/isa/wavefront/wavefront_synth.c +++ b/sound/isa/wavefront/wavefront_synth.c | |||
| @@ -633,7 +633,7 @@ wavefront_get_sample_status (snd_wavefront_t *dev, int assume_rom) | |||
| 633 | wbuf[1] = i >> 7; | 633 | wbuf[1] = i >> 7; |
| 634 | 634 | ||
| 635 | if (snd_wavefront_cmd (dev, WFC_IDENTIFY_SAMPLE_TYPE, rbuf, wbuf)) { | 635 | if (snd_wavefront_cmd (dev, WFC_IDENTIFY_SAMPLE_TYPE, rbuf, wbuf)) { |
| 636 | snd_printk("cannot identify sample " | 636 | snd_printk(KERN_WARNING "cannot identify sample " |
| 637 | "type of slot %d\n", i); | 637 | "type of slot %d\n", i); |
| 638 | dev->sample_status[i] = WF_ST_EMPTY; | 638 | dev->sample_status[i] = WF_ST_EMPTY; |
| 639 | continue; | 639 | continue; |
