]> asedeno.scripts.mit.edu Git - linux.git/commit
ASoC: rt5514: Fix rt5514_spi_burst_read() buffer passing
authorGeert Uytterhoeven <geert@linux-m68k.org>
Tue, 30 Jan 2018 13:19:42 +0000 (14:19 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 1 Mar 2018 19:31:49 +0000 (19:31 +0000)
commit29838a5c1e77ed93d41fb9837390e243b9b73518
treee2cb737ec56b05a86613dc29cb5a412edc76d96d
parent04e8262ac8c3f59599ea6dfe5cd1a039828ea4ad
ASoC: rt5514: Fix rt5514_spi_burst_read() buffer passing

rt5514_dsp_voice_wake_up_put() passes "(u8 *)&buf" to
rt5514_spi_burst_read(), where the cast is needed to silence a compiler
warning:

    sound/soc/codecs/rt5514.c: In function ‘rt5514_dsp_voice_wake_up_put’:
    sound/soc/codecs/rt5514.c:357: warning: passing argument 2 of ‘rt5514_spi_burst_read’ from incompatible pointer type

However, as the variable is declared as an array ("u8 buf[8]"), the
function should just pass "buf" instead.

Fixes: fc9cab05837639ce ("ASoC: rt5514: The DSP clock can be calibrated by the other clock source")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt5514.c