From: Pierre-Louis Bossart Date: Fri, 15 May 2020 13:59:58 +0000 (+0300) Subject: ASoC: SOF: imx: make imx8m_dsp_ops static X-Git-Tag: v5.8-rc1~47^2^2~81^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99cb681e7b8eec917ddb34b76e303aa20b2d1c1a;p=thirdparty%2Fkernel%2Flinux.git ASoC: SOF: imx: make imx8m_dsp_ops static This was in the SOF tree but lost in upstream contributions. Fixes: afb93d716533dd ("ASoC: SOF: imx: Add i.MX8M HW support") Signed-off-by: Pierre-Louis Bossart Signed-off-by: Kai Vehmanen Link: https://lore.kernel.org/r/20200515135958.17511-9-kai.vehmanen@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/imx/imx8m.c b/sound/soc/sof/imx/imx8m.c index f83581041cf37..fa86a9e2990f8 100644 --- a/sound/soc/sof/imx/imx8m.c +++ b/sound/soc/sof/imx/imx8m.c @@ -92,7 +92,7 @@ static void imx8m_dsp_handle_request(struct imx_dsp_ipc *ipc) snd_sof_ipc_msgs_rx(priv->sdev); } -struct imx_dsp_ops imx8m_dsp_ops = { +static struct imx_dsp_ops imx8m_dsp_ops = { .handle_reply = imx8m_dsp_handle_reply, .handle_request = imx8m_dsp_handle_request, };