From: "Jernej Škrabec" <jernej.skrabec@gmail.com>
To: perex@perex.cz, tiwai@suse.com, claudiu.beznea@tuxon.dev,
lgirdwood@gmail.com, broonie@kernel.org,
nicolas.ferre@microchip.com, alexandre.belloni@bootlin.com,
peda@axentia.se, lars@metafoo.de, nuno.sa@analog.com,
povik+lin@cutebit.org, wens@csie.org, samuel@sholland.org,
robh@kernel.org, u.kleine-koenig@pengutronix.de,
alsa-devel@alsa-project.org,
linux-arm-kernel@lists.infradead.org, asahi@lists.linux.dev,
linux-sunxi@lists.linux.dev, Ruan Jinjie <ruanjinjie@huawei.com>
Cc: ruanjinjie@huawei.com
Subject: Re: [PATCH -next 3/5] ASoC: sunxi: sun4i-spdif: Remove redundant of_match_ptr()
Date: Sun, 13 Aug 2023 17:22:31 +0200 [thread overview]
Message-ID: <2691934.mvXUDI8C0e@jernej-laptop> (raw)
In-Reply-To: <20230811071426.2343133-4-ruanjinjie@huawei.com>
Dne petek, 11. avgust 2023 ob 09:14:24 CEST je Ruan Jinjie napisal(a):
> The driver depends on CONFIG_OF, it is not necessary to use
> of_match_ptr() here.
>
> Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Best regards,
Jernej
> ---
> sound/soc/sunxi/sun4i-spdif.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/soc/sunxi/sun4i-spdif.c b/sound/soc/sunxi/sun4i-spdif.c
> index ff18d4113aac..c2b55d2e5fe1 100644
> --- a/sound/soc/sunxi/sun4i-spdif.c
> +++ b/sound/soc/sunxi/sun4i-spdif.c
> @@ -718,7 +718,7 @@ static const struct dev_pm_ops sun4i_spdif_pm = {
> static struct platform_driver sun4i_spdif_driver = {
> .driver = {
> .name = "sun4i-spdif",
> - .of_match_table = of_match_ptr(sun4i_spdif_of_match),
> + .of_match_table = sun4i_spdif_of_match,
> .pm = &sun4i_spdif_pm,
> },
> .probe = sun4i_spdif_probe,
WARNING: multiple messages have this Message-ID (diff)
From: "Jernej Škrabec" <jernej.skrabec@gmail.com>
To: perex@perex.cz, tiwai@suse.com, claudiu.beznea@tuxon.dev,
lgirdwood@gmail.com, broonie@kernel.org,
nicolas.ferre@microchip.com, alexandre.belloni@bootlin.com,
peda@axentia.se, lars@metafoo.de, nuno.sa@analog.com,
povik+lin@cutebit.org, wens@csie.org, samuel@sholland.org,
robh@kernel.org, u.kleine-koenig@pengutronix.de,
alsa-devel@alsa-project.org,
linux-arm-kernel@lists.infradead.org, asahi@lists.linux.dev,
linux-sunxi@lists.linux.dev, Ruan Jinjie <ruanjinjie@huawei.com>
Cc: ruanjinjie@huawei.com
Subject: Re: [PATCH -next 3/5] ASoC: sunxi: sun4i-spdif: Remove redundant of_match_ptr()
Date: Sun, 13 Aug 2023 17:22:31 +0200 [thread overview]
Message-ID: <2691934.mvXUDI8C0e@jernej-laptop> (raw)
In-Reply-To: <20230811071426.2343133-4-ruanjinjie@huawei.com>
Dne petek, 11. avgust 2023 ob 09:14:24 CEST je Ruan Jinjie napisal(a):
> The driver depends on CONFIG_OF, it is not necessary to use
> of_match_ptr() here.
>
> Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Best regards,
Jernej
> ---
> sound/soc/sunxi/sun4i-spdif.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/soc/sunxi/sun4i-spdif.c b/sound/soc/sunxi/sun4i-spdif.c
> index ff18d4113aac..c2b55d2e5fe1 100644
> --- a/sound/soc/sunxi/sun4i-spdif.c
> +++ b/sound/soc/sunxi/sun4i-spdif.c
> @@ -718,7 +718,7 @@ static const struct dev_pm_ops sun4i_spdif_pm = {
> static struct platform_driver sun4i_spdif_driver = {
> .driver = {
> .name = "sun4i-spdif",
> - .of_match_table = of_match_ptr(sun4i_spdif_of_match),
> + .of_match_table = sun4i_spdif_of_match,
> .pm = &sun4i_spdif_pm,
> },
> .probe = sun4i_spdif_probe,
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-08-13 15:24 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-11 7:14 [PATCH -next 0/5] sound: Remove redundant of_match_ptr() macro Ruan Jinjie
2023-08-11 7:14 ` Ruan Jinjie
2023-08-11 7:14 ` [PATCH -next 1/5] ASoC: atmel: Remove redundant of_match_ptr() Ruan Jinjie
2023-08-11 7:14 ` Ruan Jinjie
2023-08-11 7:14 ` [PATCH -next 2/5] ASoC: atmel: tse850-pcm5142: " Ruan Jinjie
2023-08-11 7:14 ` Ruan Jinjie
2023-08-11 7:14 ` [PATCH -next 3/5] ASoC: sunxi: sun4i-spdif: " Ruan Jinjie
2023-08-11 7:14 ` Ruan Jinjie
2023-08-13 15:22 ` Jernej Škrabec [this message]
2023-08-13 15:22 ` Jernej Škrabec
2023-08-11 7:14 ` [PATCH -next 4/5] ASoC: ssm3515: " Ruan Jinjie
2023-08-11 7:14 ` Ruan Jinjie
2023-08-11 7:14 ` [PATCH -next 5/5] ALSA: " Ruan Jinjie
2023-08-11 7:14 ` Ruan Jinjie
2023-08-11 7:49 ` Takashi Iwai
2023-08-11 7:49 ` Takashi Iwai
2023-08-11 7:51 ` [PATCH -next 0/5] sound: Remove redundant of_match_ptr() macro Takashi Iwai
2023-08-11 7:51 ` Takashi Iwai
2023-08-11 7:59 ` Ruan Jinjie
2023-08-11 7:59 ` Ruan Jinjie
2023-08-14 0:33 ` Mark Brown
2023-08-14 0:33 ` Mark Brown
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=2691934.mvXUDI8C0e@jernej-laptop \
--to=jernej.skrabec@gmail.com \
--cc=alexandre.belloni@bootlin.com \
--cc=alsa-devel@alsa-project.org \
--cc=asahi@lists.linux.dev \
--cc=broonie@kernel.org \
--cc=claudiu.beznea@tuxon.dev \
--cc=lars@metafoo.de \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=nicolas.ferre@microchip.com \
--cc=nuno.sa@analog.com \
--cc=peda@axentia.se \
--cc=perex@perex.cz \
--cc=povik+lin@cutebit.org \
--cc=robh@kernel.org \
--cc=ruanjinjie@huawei.com \
--cc=samuel@sholland.org \
--cc=tiwai@suse.com \
--cc=u.kleine-koenig@pengutronix.de \
--cc=wens@csie.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.