* [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval
@ 2022-07-05 16:11 Andy Shevchenko
2022-07-05 16:11 ` [PATCH v2 2/2] ASoC: SOF: Intel: byt: " Andy Shevchenko
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Andy Shevchenko @ 2022-07-05 16:11 UTC (permalink / raw)
To: Mark Brown, Pierre-Louis Bossart, Peter Ujfalusi,
sound-open-firmware, alsa-devel, linux-kernel
Cc: Liam Girdwood, Bard Liao, Ranjani Sridharan, Kai Vehmanen,
Daniel Baluta, Jaroslav Kysela, Takashi Iwai, Andy Shevchenko
device_get_match_data() in ACPI case calls similar to acpi_match_device().
Hence there is no need to duplicate the call. Just assign what is in
the id->driver_data.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: moved desc assignment closer to its user (Péter)
sound/soc/sof/intel/bdw.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/sound/soc/sof/intel/bdw.c b/sound/soc/sof/intel/bdw.c
index 26df780c702e..a446154f2803 100644
--- a/sound/soc/sof/intel/bdw.c
+++ b/sound/soc/sof/intel/bdw.c
@@ -681,11 +681,8 @@ static int sof_broadwell_probe(struct platform_device *pdev)
return -ENODEV;
}
- desc = device_get_match_data(dev);
- if (!desc)
- return -ENODEV;
-
- return sof_acpi_probe(pdev, device_get_match_data(dev));
+ desc = (const struct sof_dev_desc *)id->driver_data;
+ return sof_acpi_probe(pdev, desc);
}
/* acpi_driver definition */
--
2.35.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/2] ASoC: SOF: Intel: byt: remove duplicating driver data retrieval
2022-07-05 16:11 [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval Andy Shevchenko
@ 2022-07-05 16:11 ` Andy Shevchenko
2022-07-05 16:57 ` Pierre-Louis Bossart
2022-07-05 16:57 ` [PATCH v2 1/2] ASoC: SOF: Intel: bdw: " Pierre-Louis Bossart
2022-07-06 11:08 ` Mark Brown
2 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2022-07-05 16:11 UTC (permalink / raw)
To: Mark Brown, Pierre-Louis Bossart, Peter Ujfalusi,
sound-open-firmware, alsa-devel, linux-kernel
Cc: Liam Girdwood, Bard Liao, Ranjani Sridharan, Kai Vehmanen,
Daniel Baluta, Jaroslav Kysela, Takashi Iwai, Andy Shevchenko
device_get_match_data() in ACPI case calls similar to acpi_match_device().
Hence there is no need to duplicate the call. Just assign what is in
the id->driver_data.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: new patch (Pierre)
sound/soc/sof/intel/byt.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/sound/soc/sof/intel/byt.c b/sound/soc/sof/intel/byt.c
index 4ed8381eceda..e6dc4ff531c3 100644
--- a/sound/soc/sof/intel/byt.c
+++ b/sound/soc/sof/intel/byt.c
@@ -465,10 +465,7 @@ static int sof_baytrail_probe(struct platform_device *pdev)
return -ENODEV;
}
- desc = device_get_match_data(&pdev->dev);
- if (!desc)
- return -ENODEV;
-
+ desc = (const struct sof_dev_desc *)id->driver_data;
if (desc == &sof_acpi_baytrail_desc && soc_intel_is_byt_cr(pdev))
desc = &sof_acpi_baytrailcr_desc;
--
2.35.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval
2022-07-05 16:11 [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval Andy Shevchenko
2022-07-05 16:11 ` [PATCH v2 2/2] ASoC: SOF: Intel: byt: " Andy Shevchenko
@ 2022-07-05 16:57 ` Pierre-Louis Bossart
2022-07-06 11:08 ` Mark Brown
2 siblings, 0 replies; 5+ messages in thread
From: Pierre-Louis Bossart @ 2022-07-05 16:57 UTC (permalink / raw)
To: Andy Shevchenko, Mark Brown, Peter Ujfalusi, sound-open-firmware,
alsa-devel, linux-kernel
Cc: Kai Vehmanen, Bard Liao, Takashi Iwai, Liam Girdwood,
Ranjani Sridharan, Daniel Baluta
On 7/5/22 11:11, Andy Shevchenko wrote:
> device_get_match_data() in ACPI case calls similar to acpi_match_device().
> Hence there is no need to duplicate the call. Just assign what is in
> the id->driver_data.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> ---
> v2: moved desc assignment closer to its user (Péter)
> sound/soc/sof/intel/bdw.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/sound/soc/sof/intel/bdw.c b/sound/soc/sof/intel/bdw.c
> index 26df780c702e..a446154f2803 100644
> --- a/sound/soc/sof/intel/bdw.c
> +++ b/sound/soc/sof/intel/bdw.c
> @@ -681,11 +681,8 @@ static int sof_broadwell_probe(struct platform_device *pdev)
> return -ENODEV;
> }
>
> - desc = device_get_match_data(dev);
> - if (!desc)
> - return -ENODEV;
> -
> - return sof_acpi_probe(pdev, device_get_match_data(dev));
> + desc = (const struct sof_dev_desc *)id->driver_data;
> + return sof_acpi_probe(pdev, desc);
> }
>
> /* acpi_driver definition */
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 2/2] ASoC: SOF: Intel: byt: remove duplicating driver data retrieval
2022-07-05 16:11 ` [PATCH v2 2/2] ASoC: SOF: Intel: byt: " Andy Shevchenko
@ 2022-07-05 16:57 ` Pierre-Louis Bossart
0 siblings, 0 replies; 5+ messages in thread
From: Pierre-Louis Bossart @ 2022-07-05 16:57 UTC (permalink / raw)
To: Andy Shevchenko, Mark Brown, Peter Ujfalusi, sound-open-firmware,
alsa-devel, linux-kernel
Cc: Liam Girdwood, Bard Liao, Ranjani Sridharan, Kai Vehmanen,
Daniel Baluta, Jaroslav Kysela, Takashi Iwai
On 7/5/22 11:11, Andy Shevchenko wrote:
> device_get_match_data() in ACPI case calls similar to acpi_match_device().
> Hence there is no need to duplicate the call. Just assign what is in
> the id->driver_data.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Thanks Andy!
> ---
> v2: new patch (Pierre)
> sound/soc/sof/intel/byt.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/sound/soc/sof/intel/byt.c b/sound/soc/sof/intel/byt.c
> index 4ed8381eceda..e6dc4ff531c3 100644
> --- a/sound/soc/sof/intel/byt.c
> +++ b/sound/soc/sof/intel/byt.c
> @@ -465,10 +465,7 @@ static int sof_baytrail_probe(struct platform_device *pdev)
> return -ENODEV;
> }
>
> - desc = device_get_match_data(&pdev->dev);
> - if (!desc)
> - return -ENODEV;
> -
> + desc = (const struct sof_dev_desc *)id->driver_data;
> if (desc == &sof_acpi_baytrail_desc && soc_intel_is_byt_cr(pdev))
> desc = &sof_acpi_baytrailcr_desc;
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval
2022-07-05 16:11 [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval Andy Shevchenko
2022-07-05 16:11 ` [PATCH v2 2/2] ASoC: SOF: Intel: byt: " Andy Shevchenko
2022-07-05 16:57 ` [PATCH v2 1/2] ASoC: SOF: Intel: bdw: " Pierre-Louis Bossart
@ 2022-07-06 11:08 ` Mark Brown
2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2022-07-06 11:08 UTC (permalink / raw)
To: linux-kernel, peter.ujfalusi, pierre-louis.bossart, alsa-devel,
andriy.shevchenko, sound-open-firmware
Cc: ranjani.sridharan, yung-chuan.liao, kai.vehmanen, Jaroslav Kysela,
Liam Girdwood, daniel.baluta, Takashi Iwai
On Tue, 5 Jul 2022 19:11:01 +0300, Andy Shevchenko wrote:
> device_get_match_data() in ACPI case calls similar to acpi_match_device().
> Hence there is no need to duplicate the call. Just assign what is in
> the id->driver_data.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval
commit: 0d356c186ffd6d4c3e10abb283379d09a93d2515
[2/2] ASoC: SOF: Intel: byt: remove duplicating driver data retrieval
commit: 65b6851d243ff54cbd4adfb887a8af9d04b7f286
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-07-06 11:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-05 16:11 [PATCH v2 1/2] ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval Andy Shevchenko
2022-07-05 16:11 ` [PATCH v2 2/2] ASoC: SOF: Intel: byt: " Andy Shevchenko
2022-07-05 16:57 ` Pierre-Louis Bossart
2022-07-05 16:57 ` [PATCH v2 1/2] ASoC: SOF: Intel: bdw: " Pierre-Louis Bossart
2022-07-06 11:08 ` Mark Brown
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).