diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 16:02:46 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-03-09 14:58:31 +0100 |
commit | 6da6711385165eff76411b77974eec13c5ef6486 (patch) | |
tree | 429f4d3910c75e5867955ed1ed57b8bd006bbf4e /sound/ppc/daca.c | |
parent | dca7c74172fee0cf6ee1e303df093c31b5561039 (diff) | |
download | linux-next-6da6711385165eff76411b77974eec13c5ef6486.tar.gz |
ALSA: powermac - Add missing KERN_* prefix to printk
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/ppc/daca.c')
-rw-r--r-- | sound/ppc/daca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/ppc/daca.c b/sound/ppc/daca.c index 8a5b29031933..f8d478c2da62 100644 --- a/sound/ppc/daca.c +++ b/sound/ppc/daca.c @@ -82,7 +82,7 @@ static int daca_set_volume(struct pmac_daca *mix) data[1] |= mix->deemphasis ? 0x40 : 0; if (i2c_smbus_write_block_data(mix->i2c.client, DACA_REG_AVOL, 2, data) < 0) { - snd_printk("failed to set volume \n"); + snd_printk(KERN_ERR "failed to set volume \n"); return -EINVAL; } return 0; |