summaryrefslogtreecommitdiff
path: root/sound/pci/oxygen/xonar_hdmi.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-02-25 21:00:26 +0400
committerTakashi Iwai <tiwai@suse.de>2014-02-26 19:45:30 +0400
commit03d3ac21780be4d78f8d7679e428bb98fa9411ea (patch)
tree8632f5b2c249cad9369fee85496fbbc45420d892 /sound/pci/oxygen/xonar_hdmi.c
parenta3fe03f412daf40ab39ba0fbd3f78bf1f0d62856 (diff)
downloadlinux-03d3ac21780be4d78f8d7679e428bb98fa9411ea.tar.xz
ALSA: oxygen: Use standard printk helpers
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/oxygen/xonar_hdmi.c')
-rw-r--r--sound/pci/oxygen/xonar_hdmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/xonar_hdmi.c b/sound/pci/oxygen/xonar_hdmi.c
index 136dac6a3964..91d92bc32b75 100644
--- a/sound/pci/oxygen/xonar_hdmi.c
+++ b/sound/pci/oxygen/xonar_hdmi.c
@@ -120,7 +120,7 @@ void xonar_hdmi_uart_input(struct oxygen *chip)
if (chip->uart_input_count >= 2 &&
chip->uart_input[chip->uart_input_count - 2] == 'O' &&
chip->uart_input[chip->uart_input_count - 1] == 'K') {
- printk(KERN_DEBUG "message from HDMI chip received:\n");
+ dev_dbg(chip->card->dev, "message from HDMI chip received:\n");
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
chip->uart_input, chip->uart_input_count);
chip->uart_input_count = 0;