diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-01 18:54:25 +0300 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2015-05-12 19:27:48 +0300 |
commit | e9a02a3d89b9d16eafc540d1dc78476a3bb5d4eb (patch) | |
tree | 694ee797f3779de5a9832d941815803b6b8b88bb /drivers/i2c/busses/i2c-mxs.c | |
parent | 096ea30c91b521c77964ee8c214f7ce3b9d08e7b (diff) | |
download | linux-e9a02a3d89b9d16eafc540d1dc78476a3bb5d4eb.tar.xz |
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-mxs.c')
-rw-r--r-- | drivers/i2c/busses/i2c-mxs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-mxs.c b/drivers/i2c/busses/i2c-mxs.c index 3e84f6c090a5..033846cdf266 100644 --- a/drivers/i2c/busses/i2c-mxs.c +++ b/drivers/i2c/busses/i2c-mxs.c @@ -784,7 +784,7 @@ static int mxs_i2c_get_ofdata(struct mxs_i2c_dev *i2c) return 0; } -static struct platform_device_id mxs_i2c_devtype[] = { +static const struct platform_device_id mxs_i2c_devtype[] = { { .name = "imx23-i2c", .driver_data = MXS_I2C_V1, |