From: Alexander Sverdlin <alexander.sverdlin@gmail.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
Jaroslav Kysela <perex@perex.cz>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>, Takashi Iwai <tiwai@suse.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: [PATCH 24/38] ASoC: cirrus: merge DAI call back functions into ops
Date: Wed, 02 Aug 2023 14:25:53 +0200 [thread overview]
Message-ID: <5b9f9d7d6d694a7c55cd64d407ed235b5f4dbed5.camel@gmail.com> (raw)
In-Reply-To: <87bkfqtg8j.wl-kuninori.morimoto.gx@renesas.com>
Hi!
On Wed, 2023-08-02 at 00:55 +0000, Kuninori Morimoto wrote:
> ALSA SoC merges DAI call backs into .ops.
> This patch merge thesse into one.
>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Alexander Sverdlin <alexander.sverdlin@gmail.com>
> ---
> sound/soc/cirrus/ep93xx-i2s.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/soc/cirrus/ep93xx-i2s.c b/sound/soc/cirrus/ep93xx-i2s.c
> index afc6b5b570ea..522de4b80293 100644
> --- a/sound/soc/cirrus/ep93xx-i2s.c
> +++ b/sound/soc/cirrus/ep93xx-i2s.c
> @@ -407,6 +407,7 @@ static int ep93xx_i2s_resume(struct snd_soc_component *component)
> #endif
>
> static const struct snd_soc_dai_ops ep93xx_i2s_dai_ops = {
> + .probe = ep93xx_i2s_dai_probe,
> .startup = ep93xx_i2s_startup,
> .shutdown = ep93xx_i2s_shutdown,
> .hw_params = ep93xx_i2s_hw_params,
> @@ -418,7 +419,6 @@ static const struct snd_soc_dai_ops ep93xx_i2s_dai_ops = {
>
> static struct snd_soc_dai_driver ep93xx_i2s_dai = {
> .symmetric_rate = 1,
> - .probe = ep93xx_i2s_dai_probe,
> .playback = {
> .channels_min = 2,
> .channels_max = 2,
--
Alexander Sverdlin.
next prev parent reply other threads:[~2023-08-02 12:27 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-02 0:51 [PATCH 00/38] ASoC: merge DAI call back functions into ops Kuninori Morimoto
2023-08-02 0:52 ` [PATCH 01/38] ASoC: soc-dai.h: " Kuninori Morimoto
2023-08-02 0:52 ` [PATCH 02/38] ASoC: ti: " Kuninori Morimoto
2023-08-02 0:52 ` [PATCH 03/38] ASoC: adi: " Kuninori Morimoto
2023-08-02 0:52 ` [PATCH 04/38] " Kuninori Morimoto
2023-08-02 0:52 ` [PATCH 05/38] ASoC: amd: " Kuninori Morimoto
2023-08-02 0:52 ` [PATCH 06/38] ASoC: dwc: " Kuninori Morimoto
2023-08-03 5:48 ` Maxim Kochetkov
2023-08-02 0:53 ` [PATCH 07/38] ASoC: pxa: " Kuninori Morimoto
2023-08-02 0:53 ` [PATCH 08/38] ASoC: bcm: " Kuninori Morimoto
2023-08-02 0:53 ` [PATCH 09/38] ASoC: fsl: " Kuninori Morimoto
2023-08-02 0:53 ` [PATCH 10/38] ASoC: img: " Kuninori Morimoto
2023-08-02 0:53 ` [PATCH 11/38] ASoC: sof: " Kuninori Morimoto
2023-08-02 0:53 ` [PATCH 12/38] ASoC: sti: " Kuninori Morimoto
2023-08-02 0:54 ` [PATCH 13/38] ASoC: stm: " Kuninori Morimoto
2023-08-02 0:54 ` [PATCH 14/38] ASoC: pxa: " Kuninori Morimoto
2023-08-02 0:54 ` [PATCH 15/38] ASoC: rsnd: " Kuninori Morimoto
2023-08-02 0:54 ` [PATCH 16/38] ASoC: qcom: " Kuninori Morimoto
2023-08-02 0:54 ` [PATCH 17/38] ASoC: ux500: " Kuninori Morimoto
2023-08-02 0:54 ` [PATCH 18/38] ASoC: sunxi: " Kuninori Morimoto
2023-08-02 19:47 ` Jernej Škrabec
2023-08-02 0:55 ` [PATCH 19/38] ASoC: tegra: " Kuninori Morimoto
2023-08-02 0:55 ` [PATCH 20/38] ASoC: atmel: " Kuninori Morimoto
2023-08-02 0:55 ` [PATCH 21/38] ASoC: intel: " Kuninori Morimoto
2023-08-02 0:55 ` [PATCH 22/38] ASoC: meson: " Kuninori Morimoto
2023-08-02 0:55 ` [PATCH 23/38] ASoC: jz4740: " Kuninori Morimoto
2023-08-02 0:55 ` [PATCH 24/38] ASoC: cirrus: " Kuninori Morimoto
2023-08-02 12:25 ` Alexander Sverdlin [this message]
2023-08-02 0:56 ` [PATCH 25/38] ASoC: drm/vc4: " Kuninori Morimoto
2023-08-02 0:56 ` [PATCH 26/38] ASoC: samsung: " Kuninori Morimoto
2023-08-02 0:56 ` [PATCH 27/38] ASoC: mediatek: " Kuninori Morimoto
2023-08-02 12:25 ` Trevor Wu (吳文良)
2023-08-02 23:12 ` Kuninori Morimoto
2023-08-03 5:13 ` Trevor Wu (吳文良)
2023-08-02 0:57 ` [PATCH 28/38] ASoC: rockchip: " Kuninori Morimoto
2023-08-02 0:57 ` [PATCH 29/38] ASoC: uniphier: " Kuninori Morimoto
2023-08-02 0:57 ` [PATCH 30/38] ASoC: loongson: " Kuninori Morimoto
2023-08-02 0:57 ` [PATCH 31/38] ASoC: starfive: " Kuninori Morimoto
2023-08-02 1:13 ` Walker Chen
2023-08-02 0:57 ` [PATCH 32/38] ASoC: hisilicon: " Kuninori Morimoto
2023-08-02 0:57 ` [PATCH 33/38] ASoC: codecs/wm*: " Kuninori Morimoto
2023-08-02 0:58 ` [PATCH 34/38] ASoC: soc-topology: " Kuninori Morimoto
2023-08-02 0:58 ` [PATCH 35/38] ASoC: codecs/cs47lxx: " Kuninori Morimoto
2023-08-02 0:58 ` [PATCH 36/38] ASoC: codecs/cx2072x: " Kuninori Morimoto
2023-08-02 0:58 ` [PATCH 37/38] ASoC: codecs/hdmi-codec: " Kuninori Morimoto
2023-08-02 0:58 ` [PATCH 38/38] ASoC: soc-dai.h: remove unused call back functions Kuninori Morimoto
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5b9f9d7d6d694a7c55cd64d407ed235b5f4dbed5.camel@gmail.com \
--to=alexander.sverdlin@gmail.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=lgirdwood@gmail.com \
--cc=perex@perex.cz \
--cc=tiwai@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).