summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorRichard Fitzgerald <rf@opensource.wolfsonmicro.com>2017-05-26 10:47:07 +0100
committerMark Brown <broonie@kernel.org>2017-05-26 12:18:21 +0100
commit503ada8a6d00c70f5b6fe37249e9a5e2f9c9e202 (patch)
tree47f145a24db486c1ebd025b0ccf4c2d7b4feef66 /sound
parentf6db09488f58372909728cea5a7c063ebf78f386 (diff)
downloadlinux-0-day-503ada8a6d00c70f5b6fe37249e9a5e2f9c9e202.tar.gz
linux-0-day-503ada8a6d00c70f5b6fe37249e9a5e2f9c9e202.tar.xz
ASoC: wm_adsp: Fix typo in algorithm list warning message
The list terminator is 0xbedead but the message warning if it wasn't found was showing that 0xbeadead was expected. Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm_adsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c
index 5aff83be375ce..65c059b5ffd78 100644
--- a/sound/soc/codecs/wm_adsp.c
+++ b/sound/soc/codecs/wm_adsp.c
@@ -1888,7 +1888,7 @@ static void *wm_adsp_read_algs(struct wm_adsp *dsp, size_t n_algs,
}
if (be32_to_cpu(val) != 0xbedead)
- adsp_warn(dsp, "Algorithm list end %x 0x%x != 0xbeadead\n",
+ adsp_warn(dsp, "Algorithm list end %x 0x%x != 0xbedead\n",
pos + len, be32_to_cpu(val));
alg = kzalloc(len * 2, GFP_KERNEL | GFP_DMA);