ASoC: siu: Fix build error by a wrong const prefix
A const prefix was put wrongly in the middle at the code refactoring commit932eaf7c79
("ASoC: sh: siu_pcm: remove snd_pcm_ops"), which leads to a build error as: sound/soc/sh/siu_pcm.c:546:8: error: expected '{' before 'const' Also, another inconsistency is that the declaration of siu_component misses the const prefix. This patch corrects both failures. Fixes:932eaf7c79
("ASoC: sh: siu_pcm: remove snd_pcm_ops") Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://lore.kernel.org/r/20210126154702.3974-1-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Родитель
5413dfd8ce
Коммит
ae07f5c7c5
|
@ -169,7 +169,7 @@ static inline u32 siu_read32(u32 __iomem *addr)
|
||||||
#define SIU_BRGBSEL (0x108 / sizeof(u32))
|
#define SIU_BRGBSEL (0x108 / sizeof(u32))
|
||||||
#define SIU_BRRB (0x10c / sizeof(u32))
|
#define SIU_BRRB (0x10c / sizeof(u32))
|
||||||
|
|
||||||
extern struct snd_soc_component_driver siu_component;
|
extern const struct snd_soc_component_driver siu_component;
|
||||||
extern struct siu_info *siu_i2s_data;
|
extern struct siu_info *siu_i2s_data;
|
||||||
|
|
||||||
int siu_init_port(int port, struct siu_port **port_info, struct snd_card *card);
|
int siu_init_port(int port, struct siu_port **port_info, struct snd_card *card);
|
||||||
|
|
|
@ -543,7 +543,7 @@ static void siu_pcm_free(struct snd_soc_component *component,
|
||||||
dev_dbg(pcm->card->dev, "%s\n", __func__);
|
dev_dbg(pcm->card->dev, "%s\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct const snd_soc_component_driver siu_component = {
|
const struct snd_soc_component_driver siu_component = {
|
||||||
.name = DRV_NAME,
|
.name = DRV_NAME,
|
||||||
.open = siu_pcm_open,
|
.open = siu_pcm_open,
|
||||||
.close = siu_pcm_close,
|
.close = siu_pcm_close,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче