mirror of https://gitee.com/openkylin/linux.git
8ca5104715
Building with clang shows a variable that is only used by the
suspend/resume functions but defined outside of their #ifdef block:
sound/soc/ti/davinci-mcasp.c:48:12: error: variable 'context_regs' is not needed and will not be emitted
We commonly fix these by marking the PM functions as __maybe_unused,
but here that would grow the davinci_mcasp structure, so instead
add another #ifdef here.
Fixes:
|
||
---|---|---|
.. | ||
Kconfig | ||
Makefile | ||
ams-delta.c | ||
davinci-evm.c | ||
davinci-i2s.c | ||
davinci-i2s.h | ||
davinci-mcasp.c | ||
davinci-mcasp.h | ||
davinci-vcif.c | ||
edma-pcm.c | ||
edma-pcm.h | ||
n810.c | ||
omap-abe-twl6040.c | ||
omap-dmic.c | ||
omap-dmic.h | ||
omap-hdmi.c | ||
omap-mcbsp-priv.h | ||
omap-mcbsp-st.c | ||
omap-mcbsp.c | ||
omap-mcbsp.h | ||
omap-mcpdm.c | ||
omap-mcpdm.h | ||
omap-twl4030.c | ||
omap3pandora.c | ||
osk5912.c | ||
rx51.c | ||
sdma-pcm.c | ||
sdma-pcm.h |