aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2014-04-17 05:51:18 -0400
committerTakashi Iwai <tiwai@suse.de>2014-04-18 03:56:09 -0400
commit68e440bb48a35c65756471e3cb952ed7fb7cef5b (patch)
treeb83ef6ed2f76eefe643ad637bb1caa60388d7aec
parentc546ca95f58b53839e9eb9dbdf25b369605e5077 (diff)
ALSA: lx_core: Fix dev_dbg typo
Commit be4e6d3c0fa0 ("ALSA: lx6464es: Use standard printk helpers") converted the custom printk helpers that were used before to standard dev_* functions. One of the dev_dbg calls had a typo, that was hidden away by an #if 0 .. #endif Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/pci/lx6464es/lx_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/lx6464es/lx_core.c b/sound/pci/lx6464es/lx_core.c
index 652f6dfc7e1a..9e0acba82751 100644
--- a/sound/pci/lx6464es/lx_core.c
+++ b/sound/pci/lx6464es/lx_core.c
@@ -1197,7 +1197,7 @@ irqreturn_t lx_interrupt(int irq, void *dev_id)
1197 1197
1198#if 0 1198#if 0
1199 if (irqsrc & MASK_SYS_STATUS_EOBI) 1199 if (irqsrc & MASK_SYS_STATUS_EOBI)
1200 dev_dgg(chip->card->dev, "interrupt: EOBI\n"); 1200 dev_dbg(chip->card->dev, "interrupt: EOBI\n");
1201 1201
1202 if (irqsrc & MASK_SYS_STATUS_EOBO) 1202 if (irqsrc & MASK_SYS_STATUS_EOBO)
1203 dev_dbg(chip->card->dev, "interrupt: EOBO\n"); 1203 dev_dbg(chip->card->dev, "interrupt: EOBO\n");