diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-02 00:54:25 +0900 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2015-05-12 18:27:48 +0200 |
commit | e9a02a3d89b9d16eafc540d1dc78476a3bb5d4eb (patch) | |
tree | 694ee797f3779de5a9832d941815803b6b8b88bb /drivers/i2c/busses/i2c-s3c2410.c | |
parent | 096ea30c91b521c77964ee8c214f7ce3b9d08e7b (diff) |
i2c: constify platform_device_id
The platform_device_id is not modified by these drivers and core uses it
as const.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-s3c2410.c')
-rw-r--r-- | drivers/i2c/busses/i2c-s3c2410.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 958c8db4ec30..c1f0e62d1bb1 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -132,7 +132,7 @@ struct s3c24xx_i2c { unsigned int sys_i2c_cfg; }; -static struct platform_device_id s3c24xx_driver_ids[] = { +static const struct platform_device_id s3c24xx_driver_ids[] = { { .name = "s3c2410-i2c", .driver_data = 0, |