aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2021-03-15 20:58:00 -0300
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2021-03-16 08:48:44 +0100
commit9346ff0bc6ff3c3a495d50a43b57df8fed7bc562 (patch)
tree4ca88851c0cfe3ab30d31fea98662282c3482c8a /drivers/rtc
parentrtc: imxdi: Convert to a DT-only driver (diff)
downloadlinux-dev-9346ff0bc6ff3c3a495d50a43b57df8fed7bc562.tar.xz
linux-dev-9346ff0bc6ff3c3a495d50a43b57df8fed7bc562.zip
rtc: mxc: Remove unneeded of_match_ptr()
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: Alexandre Belloni <alexandre.belloni@bootlin.com> Link: https://lore.kernel.org/r/20210315235800.200137-1-festevam@gmail.com
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-mxc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-mxc.c b/drivers/rtc/rtc-mxc.c
index db57dda7ab97..0f08f22df869 100644
--- a/drivers/rtc/rtc-mxc.c
+++ b/drivers/rtc/rtc-mxc.c
@@ -415,7 +415,7 @@ static int mxc_rtc_probe(struct platform_device *pdev)
static struct platform_driver mxc_rtc_driver = {
.driver = {
.name = "mxc_rtc",
- .of_match_table = of_match_ptr(imx_rtc_dt_ids),
+ .of_match_table = imx_rtc_dt_ids,
},
.probe = mxc_rtc_probe,
};