From: Charles Keepax Date: Thu, 10 Mar 2016 10:46:07 +0000 (+0000) Subject: ASoC: wm_adsp: Use correct local length in error message X-Git-Tag: v4.6-rc1~101^2~9^2~8^5 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=5602a64318a4a6aad028141bb68e9bbd6bb5749a;p=linux.git ASoC: wm_adsp: Use correct local length in error message Fixes: 44029e9e1290 ("ASoC: wm_adsp: wm_coeff_{read|write}_control should use passed length") Signed-off-by: Charles Keepax Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index 36687db5da61..ba9213c0ad53 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -787,7 +787,7 @@ static int wm_coeff_read_control(struct wm_coeff_ctl *ctl, ret = regmap_raw_read(dsp->regmap, reg, scratch, len); if (ret) { adsp_err(dsp, "Failed to read %zu bytes from %x: %d\n", - ctl->len, reg, ret); + len, reg, ret); kfree(scratch); return ret; }