projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c4b264
)
PM / devfreq: imx-bus: Remove unneeded of_match_ptr()
author
Fabio Estevam
<festevam@gmail.com>
Mon, 29 Mar 2021 12:24:24 +0000
(09:24 -0300)
committer
Chanwoo Choi
<cw00.choi@samsung.com>
Thu, 8 Apr 2021 04:14:51 +0000
(13:14 +0900)
i.MX is a DT-only platform, so of_match_ptr() can be safely
removed.
Remove the unneeded of_match_ptr().
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/devfreq/imx-bus.c
patch
|
blob
|
history
diff --git
a/drivers/devfreq/imx-bus.c
b/drivers/devfreq/imx-bus.c
index 4f38455ad74239550ceec80078a6874e45e42a25..3fc3fd77492d58d6e844aae46f73e159918e8589 100644
(file)
--- a/
drivers/devfreq/imx-bus.c
+++ b/
drivers/devfreq/imx-bus.c
@@
-169,7
+169,7
@@
static struct platform_driver imx_bus_platdrv = {
.probe = imx_bus_probe,
.driver = {
.name = "imx-bus-devfreq",
- .of_match_table =
of_match_ptr(imx_bus_of_match)
,
+ .of_match_table =
imx_bus_of_match
,
},
};
module_platform_driver(imx_bus_platdrv);