Unverified Commit 3e5cdded authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Mark Brown
Browse files

ASoC: SOF: imx: add header file for ops



Sparse (make C=2) complains about undeclared variables. Fix by adding
a real prototype instead of 'extern' in sof-of-dev.c

Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: default avatarDaniel Baluta <daniel.baluta@gmail.com>
Reviewed-by: default avatarKai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: default avatarPaul Olaru <paul.olaru@oss.nxp.com>
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@linux.intel.com>
Link: https://lore.kernel.org/r/20210928072807.27838-1-peter.ujfalusi@linux.intel.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent a1ce6e43
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */

#ifndef __IMX_OPS_H__
#define __IMX_OPS_H__

extern struct snd_sof_dsp_ops sof_imx8_ops;
extern struct snd_sof_dsp_ops sof_imx8x_ops;
extern struct snd_sof_dsp_ops sof_imx8m_ops;

#endif
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
#include <dt-bindings/firmware/imx/rsrc.h>
#include "../ops.h"
#include "imx-common.h"
#include "imx-ops.h"

/* DSP memories */
#define IRAM_OFFSET		0x10000
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@

#include "../ops.h"
#include "imx-common.h"
#include "imx-ops.h"

#define MBOX_OFFSET	0x800000
#define MBOX_SIZE	0x1000
+1 −4
Original line number Diff line number Diff line
@@ -11,10 +11,7 @@
#include <sound/sof.h>

#include "ops.h"

extern struct snd_sof_dsp_ops sof_imx8_ops;
extern struct snd_sof_dsp_ops sof_imx8x_ops;
extern struct snd_sof_dsp_ops sof_imx8m_ops;
#include "imx/imx-ops.h"

/* platform specific devices */
#if IS_ENABLED(CONFIG_SND_SOC_SOF_IMX8)