diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 15:51:50 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-05 16:00:56 +0100 |
commit | 45203832df2fa9e94ca0a249ddb20d2b077e58cc (patch) | |
tree | 54b5fed5a98235333ee01706751e9e898ee56c77 /sound/drivers/vx | |
parent | 006de267351aa3d836f3307370eae7ec16eac09d (diff) | |
download | linux-stable-45203832df2fa9e94ca0a249ddb20d2b077e58cc.tar.gz linux-stable-45203832df2fa9e94ca0a249ddb20d2b077e58cc.tar.bz2 linux-stable-45203832df2fa9e94ca0a249ddb20d2b077e58cc.zip |
ALSA: Add missing KERN_* prefix to printk in sound/drivers
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers/vx')
-rw-r--r-- | sound/drivers/vx/vx_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/drivers/vx/vx_core.c b/sound/drivers/vx/vx_core.c index 14e3354be43a..19c6e376c7c7 100644 --- a/sound/drivers/vx/vx_core.c +++ b/sound/drivers/vx/vx_core.c @@ -688,7 +688,8 @@ int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp) image = dsp->data + i; /* Wait DSP ready for a new read */ if ((err = vx_wait_isr_bit(chip, ISR_TX_EMPTY)) < 0) { - printk("dsp loading error at position %d\n", i); + printk(KERN_ERR + "dsp loading error at position %d\n", i); return err; } cptr = image; |