mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
ASoC: samsung: Constify static snd_soc_ops
These are only assigned to the ops field in the snd_soc_dai_link struct which is a pointer to const struct snd_soc_ops. Make them const to allow the compiler to put them in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Link: https://lore.kernel.org/r/20210728172548.234943-1-rikard.falkeborn@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
14db5499d5
commit
2080acf3d1
@ -310,7 +310,7 @@ static int aries_hw_free(struct snd_pcm_substream *substream)
|
|||||||
/*
|
/*
|
||||||
* Main DAI operations
|
* Main DAI operations
|
||||||
*/
|
*/
|
||||||
static struct snd_soc_ops aries_ops = {
|
static const struct snd_soc_ops aries_ops = {
|
||||||
.hw_params = aries_hw_params,
|
.hw_params = aries_hw_params,
|
||||||
.hw_free = aries_hw_free,
|
.hw_free = aries_hw_free,
|
||||||
};
|
};
|
||||||
|
@ -48,7 +48,7 @@ static int arndale_rt5631_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops arndale_rt5631_ops = {
|
static const struct snd_soc_ops arndale_rt5631_ops = {
|
||||||
.hw_params = arndale_rt5631_hw_params,
|
.hw_params = arndale_rt5631_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ static int arndale_wm1811_hw_params(struct snd_pcm_substream *substream,
|
|||||||
rclk + 1, SND_SOC_CLOCK_IN);
|
rclk + 1, SND_SOC_CLOCK_IN);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops arndale_wm1811_ops = {
|
static const struct snd_soc_ops arndale_wm1811_ops = {
|
||||||
.hw_params = arndale_wm1811_hw_params,
|
.hw_params = arndale_wm1811_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ static int h1940_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops h1940_ops = {
|
static const struct snd_soc_ops h1940_ops = {
|
||||||
.startup = h1940_startup,
|
.startup = h1940_startup,
|
||||||
.hw_params = h1940_hw_params,
|
.hw_params = h1940_hw_params,
|
||||||
};
|
};
|
||||||
|
@ -130,7 +130,7 @@ static int littlemill_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops littlemill_ops = {
|
static const struct snd_soc_ops littlemill_ops = {
|
||||||
.hw_params = littlemill_hw_params,
|
.hw_params = littlemill_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -129,7 +129,7 @@ static int midas_aif1_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return midas_start_fll1(rtd, pll_out);
|
return midas_start_fll1(rtd, pll_out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops midas_aif1_ops = {
|
static const struct snd_soc_ops midas_aif1_ops = {
|
||||||
.hw_params = midas_aif1_hw_params,
|
.hw_params = midas_aif1_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ static int neo1973_hifi_hw_free(struct snd_pcm_substream *substream)
|
|||||||
/*
|
/*
|
||||||
* Neo1973 WM8753 HiFi DAI opserations.
|
* Neo1973 WM8753 HiFi DAI opserations.
|
||||||
*/
|
*/
|
||||||
static struct snd_soc_ops neo1973_hifi_ops = {
|
static const struct snd_soc_ops neo1973_hifi_ops = {
|
||||||
.hw_params = neo1973_hifi_hw_params,
|
.hw_params = neo1973_hifi_hw_params,
|
||||||
.hw_free = neo1973_hifi_hw_free,
|
.hw_free = neo1973_hifi_hw_free,
|
||||||
};
|
};
|
||||||
@ -158,7 +158,7 @@ static int neo1973_voice_hw_free(struct snd_pcm_substream *substream)
|
|||||||
return snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 0, 0);
|
return snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops neo1973_voice_ops = {
|
static const struct snd_soc_ops neo1973_voice_ops = {
|
||||||
.hw_params = neo1973_voice_hw_params,
|
.hw_params = neo1973_voice_hw_params,
|
||||||
.hw_free = neo1973_voice_hw_free,
|
.hw_free = neo1973_voice_hw_free,
|
||||||
};
|
};
|
||||||
|
@ -62,7 +62,7 @@ static struct snd_soc_jack_gpio hp_jack_gpios[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct snd_soc_ops rx1950_ops = {
|
static const struct snd_soc_ops rx1950_ops = {
|
||||||
.startup = rx1950_startup,
|
.startup = rx1950_startup,
|
||||||
.hw_params = rx1950_hw_params,
|
.hw_params = rx1950_hw_params,
|
||||||
};
|
};
|
||||||
|
@ -70,7 +70,7 @@ static int smartq_hifi_hw_params(struct snd_pcm_substream *substream,
|
|||||||
/*
|
/*
|
||||||
* SmartQ WM8987 HiFi DAI operations.
|
* SmartQ WM8987 HiFi DAI operations.
|
||||||
*/
|
*/
|
||||||
static struct snd_soc_ops smartq_hifi_ops = {
|
static const struct snd_soc_ops smartq_hifi_ops = {
|
||||||
.hw_params = smartq_hifi_hw_params,
|
.hw_params = smartq_hifi_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ static int smdk_hw_params(struct snd_pcm_substream *substream,
|
|||||||
/*
|
/*
|
||||||
* SMDK WM8580 DAI operations.
|
* SMDK WM8580 DAI operations.
|
||||||
*/
|
*/
|
||||||
static struct snd_soc_ops smdk_ops = {
|
static const struct snd_soc_ops smdk_ops = {
|
||||||
.hw_params = smdk_hw_params,
|
.hw_params = smdk_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@ static int smdk_hw_params(struct snd_pcm_substream *substream,
|
|||||||
/*
|
/*
|
||||||
* SMDK WM8994 DAI operations.
|
* SMDK WM8994 DAI operations.
|
||||||
*/
|
*/
|
||||||
static struct snd_soc_ops smdk_ops = {
|
static const struct snd_soc_ops smdk_ops = {
|
||||||
.hw_params = smdk_hw_params,
|
.hw_params = smdk_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ static int smdk_wm8994_pcm_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops smdk_wm8994_pcm_ops = {
|
static const struct snd_soc_ops smdk_wm8994_pcm_ops = {
|
||||||
.hw_params = smdk_wm8994_pcm_hw_params,
|
.hw_params = smdk_wm8994_pcm_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ static int tm2_aif1_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return tm2_start_sysclk(rtd->card);
|
return tm2_start_sysclk(rtd->card);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops tm2_aif1_ops = {
|
static const struct snd_soc_ops tm2_aif1_ops = {
|
||||||
.hw_params = tm2_aif1_hw_params,
|
.hw_params = tm2_aif1_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -200,7 +200,7 @@ static int tm2_aif2_hw_free(struct snd_pcm_substream *substream)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops tm2_aif2_ops = {
|
static const struct snd_soc_ops tm2_aif2_ops = {
|
||||||
.hw_params = tm2_aif2_hw_params,
|
.hw_params = tm2_aif2_hw_params,
|
||||||
.hw_free = tm2_aif2_hw_free,
|
.hw_free = tm2_aif2_hw_free,
|
||||||
};
|
};
|
||||||
@ -254,7 +254,7 @@ static int tm2_hdmi_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops tm2_hdmi_ops = {
|
static const struct snd_soc_ops tm2_hdmi_ops = {
|
||||||
.hw_params = tm2_hdmi_hw_params,
|
.hw_params = tm2_hdmi_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@ static int tobermory_hw_params(struct snd_pcm_substream *substream,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_ops tobermory_ops = {
|
static const struct snd_soc_ops tobermory_ops = {
|
||||||
.hw_params = tobermory_hw_params,
|
.hw_params = tobermory_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user