From 14796700fc4527edf964f6aa833d3fff76db9943 Mon Sep 17 00:00:00 2001 From: Pierre-Louis Bossart Date: Thu, 21 Nov 2019 12:46:03 -0600 Subject: [PATCH] ASoC: SOF: Intel: hda: make handler and thread static reported by sparse Signed-off-by: Pierre-Louis Bossart --- sound/soc/sof/intel/hda.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/sof/intel/hda.c b/sound/soc/sof/intel/hda.c index 6e391a686fcc..f2df5cc91972 100644 --- a/sound/soc/sof/intel/hda.c +++ b/sound/soc/sof/intel/hda.c @@ -402,7 +402,7 @@ static const struct sof_intel_dsp_desc return chip_info; } -irqreturn_t hda_dsp_interrupt_handler(int irq, void *context) +static irqreturn_t hda_dsp_interrupt_handler(int irq, void *context) { struct snd_sof_dev *sdev = context; @@ -413,7 +413,7 @@ irqreturn_t hda_dsp_interrupt_handler(int irq, void *context) return IRQ_NONE; } -irqreturn_t hda_dsp_interrupt_thread(int irq, void *context) +static irqreturn_t hda_dsp_interrupt_thread(int irq, void *context) { struct snd_sof_dev *sdev = context;