diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2008-04-14 06:59:27 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 06:00:33 -0400 |
commit | 32f4876e62d5caba712ca76d96b0018dcc0f9601 (patch) | |
tree | 4032c7708451165cac1702432253fd7d4b1781c8 | |
parent | 4383fae0ec5bc269f9eb4383b223731e3ecd2fe3 (diff) |
[ALSA] soc - Include register in DAPM debug output
When logging register changes in DAPM debug output include the register
number.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/soc/soc-dapm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 4c64560493f5..af3326c63504 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
@@ -226,7 +226,7 @@ static int dapm_update_bits(struct snd_soc_dapm_widget *widget) | |||
226 | snd_soc_write(codec, widget->reg, new); | 226 | snd_soc_write(codec, widget->reg, new); |
227 | pop_wait(POP_TIME); | 227 | pop_wait(POP_TIME); |
228 | } | 228 | } |
229 | dbg("reg old %x new %x change %d\n", old, new, change); | 229 | dbg("reg %x old %x new %x change %d\n", widget->reg, old, new, change); |
230 | return change; | 230 | return change; |
231 | } | 231 | } |
232 | 232 | ||