* [PATCH 07/38] ASoC: meson: t9015: drop of_match_ptr from of_device_id table
[not found] <20201120161653.445521-1-krzk@kernel.org>
@ 2020-11-20 16:16 ` Krzysztof Kozlowski
0 siblings, 0 replies; only message in thread
From: Krzysztof Kozlowski @ 2020-11-20 16:16 UTC (permalink / raw)
To: linux-kernel, Liam Girdwood, Mark Brown, alsa-devel
Cc: Neil Armstrong, Martin Blumenstingl, Kevin Hilman, Takashi Iwai,
Krzysztof Kozlowski, Jaroslav Kysela, linux-amlogic,
linux-arm-kernel, Jerome Brunet
The driver can match only via the DT table so the table should be always
used and the of_match_ptr does not have any sense (this also allows ACPI
matching via PRP0001, even though it is not relevant here). This fixes
compile warning (!CONFIG_OF on x86_64):
sound/soc/meson/t9015.c:315:34: warning: ‘t9015_ids’ defined but not used [-Wunused-const-variable=]
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
sound/soc/meson/t9015.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/meson/t9015.c b/sound/soc/meson/t9015.c
index 56d2592c16d5..0532a2b8c240 100644
--- a/sound/soc/meson/t9015.c
+++ b/sound/soc/meson/t9015.c
@@ -321,7 +321,7 @@ MODULE_DEVICE_TABLE(of, t9015_ids);
static struct platform_driver t9015_driver = {
.driver = {
.name = "t9015-codec",
- .of_match_table = of_match_ptr(t9015_ids),
+ .of_match_table = t9015_ids,
},
.probe = t9015_probe,
};
--
2.25.1
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-11-20 16:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20201120161653.445521-1-krzk@kernel.org>
2020-11-20 16:16 ` [PATCH 07/38] ASoC: meson: t9015: drop of_match_ptr from of_device_id table Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®