diff options
| author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2026-06-10 03:48:31 +0300 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-06-10 14:00:23 +0300 |
| commit | fc83c6a271c199f76781da3314bc34868b4bc9a8 (patch) | |
| tree | ce4a940bcf4d293669e6585104cb275e03cbee4a /include | |
| parent | 3fd01f2e0500178daa01fbda918678578a2d9431 (diff) | |
| download | linux-fc83c6a271c199f76781da3314bc34868b4bc9a8.tar.xz | |
sh: roll back Ecovec24/7724se Sound support
Due to a communication miss, the Ecovec24/7724se Sound support
were removed. We need to keep them for a while, until they will
support "DT-style".
Roll back Ecovec24/7724se "platform data style", and its necessary header.
Fixes: deadb855b694d ("sh: 7724se: remove FSI/AK4642/Simple-Audio-Card support")
Fixes: 9cc93ebc85e71 ("sh: ecovec24: remove FSI/DA7210/Simple-Audio-Card support")
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://patch.msgid.link/87v7br43vk.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/simple_card.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/sound/simple_card.h b/include/sound/simple_card.h new file mode 100644 index 000000000000..2e999916dbd7 --- /dev/null +++ b/include/sound/simple_card.h @@ -0,0 +1,26 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * ASoC simple sound card support + * + * Copyright (C) 2012 Renesas Solutions Corp. + * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> + */ + +#ifndef __SIMPLE_CARD_H +#define __SIMPLE_CARD_H + +#include <sound/soc.h> +#include <sound/simple_card_utils.h> + +struct simple_util_info { + const char *name; + const char *card; + const char *codec; + const char *platform; + + unsigned int daifmt; + struct simple_util_dai cpu_dai; + struct simple_util_dai codec_dai; +}; + +#endif /* __SIMPLE_CARD_H */ |
