aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski.k@gmail.com>2015-05-02 00:44:37 +0900
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2015-06-19 20:03:20 +0200
commitcd6ba00aaa8bb5335cf2aa4b98c0ac15ffc9000d (patch)
treea944529e4a01dcddf5f177022d191597efc7dfbd /drivers/rtc
parentrtc: hid-sensor-time: Constify platform_device_id (diff)
downloadlinux-dev-cd6ba00aaa8bb5335cf2aa4b98c0ac15ffc9000d.tar.xz
linux-dev-cd6ba00aaa8bb5335cf2aa4b98c0ac15ffc9000d.zip
rtc: mxc: Constify platform_device_id
The platform_device_id is not modified by the driver and core uses it as const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.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 09d422b9f7f7..5fc292c2dfdf 100644
--- a/drivers/rtc/rtc-mxc.c
+++ b/drivers/rtc/rtc-mxc.c
@@ -84,7 +84,7 @@ struct rtc_plat_data {
enum imx_rtc_type devtype;
};
-static struct platform_device_id imx_rtc_devtype[] = {
+static const struct platform_device_id imx_rtc_devtype[] = {
{
.name = "imx1-rtc",
.driver_data = IMX1_RTC,