return MBOX_OFFSET;
 }
 
-void imx8_dsp_handle_reply(struct imx_dsp_ipc *ipc)
+static void imx8_dsp_handle_reply(struct imx_dsp_ipc *ipc)
 {
        struct imx8_priv *priv = imx_dsp_get_data(ipc);
        unsigned long flags;
        spin_unlock_irqrestore(&priv->sdev->ipc_lock, flags);
 }
 
-void imx8_dsp_handle_request(struct imx_dsp_ipc *ipc)
+static void imx8_dsp_handle_request(struct imx_dsp_ipc *ipc)
 {
        struct imx8_priv *priv = imx_dsp_get_data(ipc);
 
 }
 
 /* on i.MX8 there is 1 to 1 match between type and BAR idx */
-int imx8_get_bar_index(struct snd_sof_dev *sdev, u32 type)
+static int imx8_get_bar_index(struct snd_sof_dev *sdev, u32 type)
 {
        return type;
 }
 
-void imx8_ipc_msg_data(struct snd_sof_dev *sdev,
-                      struct snd_pcm_substream *substream,
-                      void *p, size_t sz)
+static void imx8_ipc_msg_data(struct snd_sof_dev *sdev,
+                             struct snd_pcm_substream *substream,
+                             void *p, size_t sz)
 {
        sof_mailbox_read(sdev, sdev->dsp_box.offset, p, sz);
 }
 
-int imx8_ipc_pcm_params(struct snd_sof_dev *sdev,
-                       struct snd_pcm_substream *substream,
-                       const struct sof_ipc_pcm_params_reply *reply)
+static int imx8_ipc_pcm_params(struct snd_sof_dev *sdev,
+                              struct snd_pcm_substream *substream,
+                              const struct sof_ipc_pcm_params_reply *reply)
 {
        return 0;
 }