diff options
author | Arvind Yadav | 2017-08-13 15:15:32 +0530 |
---|---|---|
committer | Jiri Kosina | 2017-08-15 11:01:14 +0200 |
commit | 0be2bfdc2307bfe49d7dae5a18f021affc1276b7 (patch) | |
tree | f488fe688fef1a8114d80cdf72c91dc832f933c8 /drivers/hid | |
parent | b0f847e16c1ea6ead5680cf58cade70918363315 (diff) |
HID: sensor: constify platform_device_id
platform_device_id are not supposed to change at runtime. All functions
working with platform_device_id provided by <linux/platform_device.h>
work with const platform_device_id. So mark the non-const structs as
const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-sensor-custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-sensor-custom.c b/drivers/hid/hid-sensor-custom.c index 3a84aaf1418b..5ad39fd5d879 100644 --- a/drivers/hid/hid-sensor-custom.c +++ b/drivers/hid/hid-sensor-custom.c @@ -823,7 +823,7 @@ static int hid_sensor_custom_remove(struct platform_device *pdev) return 0; } -static struct platform_device_id hid_sensor_custom_ids[] = { +static const struct platform_device_id hid_sensor_custom_ids[] = { { .name = "HID-SENSOR-2000e1", }, |