diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-02 00:44:36 +0900 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-06-19 20:03:20 +0200 |
commit | 19fd685fcb13fa3c0b1539c2f31e1add8ab63edf (patch) | |
tree | 428527dfc5dc7d3460a86297fc5a51ed2ce6b1d0 /drivers/rtc | |
parent | 9a72f4104bc821fd07798ec42141c8066874b9f9 (diff) | |
download | op-kernel-dev-19fd685fcb13fa3c0b1539c2f31e1add8ab63edf.zip op-kernel-dev-19fd685fcb13fa3c0b1539c2f31e1add8ab63edf.tar.gz |
rtc: hid-sensor-time: 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-hid-sensor-time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-hid-sensor-time.c b/drivers/rtc/rtc-hid-sensor-time.c index af4f85a..c398f74 100644 --- a/drivers/rtc/rtc-hid-sensor-time.c +++ b/drivers/rtc/rtc-hid-sensor-time.c @@ -318,7 +318,7 @@ static int hid_time_remove(struct platform_device *pdev) return 0; } -static struct platform_device_id hid_time_ids[] = { +static const struct platform_device_id hid_time_ids[] = { { /* Format: HID-SENSOR-usage_id_in_hex_lowercase */ .name = "HID-SENSOR-2000a0", |