diff options
author | 2013-01-20 19:02:19 +0900 | |
---|---|---|
committer | 2013-01-20 22:13:24 +0900 | |
commit | 25c62f7e7014d64c0308d0dedb99282ed8ade2ce (patch) | |
tree | ac21dcdc5f18a1e7ee7849e8ccbe01a9b6f381b3 | |
parent | ASoC: wm_adsp: Set ADSP1 clock rate to match sys clock (diff) | |
download | wireguard-linux-25c62f7e7014d64c0308d0dedb99282ed8ade2ce.tar.xz wireguard-linux-25c62f7e7014d64c0308d0dedb99282ed8ade2ce.zip |
ASoC: wm_adsp: Make region identification errors more informative
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | sound/soc/codecs/wm_adsp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index 9e311622190e..084ea5f4aedd 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -768,7 +768,8 @@ static int wm_adsp_load_coeff(struct wm_adsp *dsp) break; default: - adsp_err(dsp, "Unknown region type %x\n", type); + adsp_err(dsp, "%s.%d: Unknown region type %x at %d\n", + file, blocks, type, pos); break; } |