diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2023-03-27 04:33:41 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-27 13:09:49 +0100 |
commit | ad58151fa04280a938c173bcba05ba42a4073d92 (patch) | |
tree | 117efb329211c2a82afa8e0c0318389a7d18f9af /sound/soc/generic/audio-graph-card2-custom-sample.c | |
parent | 65d4d7259bfec376b6b1483b4fe4058a5ba2259b (diff) | |
download | linux-ad58151fa04280a938c173bcba05ba42a4073d92.tar.gz linux-ad58151fa04280a938c173bcba05ba42a4073d92.tar.bz2 linux-ad58151fa04280a938c173bcba05ba42a4073d92.zip |
ASoC: audio-graph-card2-custom-sample.dtsi: use card->name to avoid long name
Current Card2 Custom Sample will be too long Card name, and be error
audio-graph-card2-custom-sample audio-graph-card2-custom-sample \
ASoC: driver name too long \
audio-graph-card2-custom-sample' -> 'audio-graph-car'
This patch uses short name to avoid it
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87bkke7qzf.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/generic/audio-graph-card2-custom-sample.c')
-rw-r--r-- | sound/soc/generic/audio-graph-card2-custom-sample.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/generic/audio-graph-card2-custom-sample.c b/sound/soc/generic/audio-graph-card2-custom-sample.c index 4a2c743e286c..a3142be9323e 100644 --- a/sound/soc/generic/audio-graph-card2-custom-sample.c +++ b/sound/soc/generic/audio-graph-card2-custom-sample.c @@ -151,6 +151,9 @@ static int custom_probe(struct platform_device *pdev) simple_priv = &custom_priv->simple_priv; simple_priv->ops = &custom_ops; /* customize dai_link ops */ + /* "audio-graph-card2-custom-sample" is too long */ + simple_priv->snd_card.name = "card2-custom"; + /* use audio-graph-card2 parsing with own custom hooks */ ret = audio_graph2_parse_of(simple_priv, dev, &custom_hooks); if (ret < 0) |