diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-19 20:02:22 +0800 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-01-09 00:37:44 +0100 |
commit | d4e948636bd1d9bdf07d38d63d324812725f9d88 (patch) | |
tree | af39a0319ba16f1854a0785aab9f95262f4106ca /drivers/mfd | |
parent | cccdceb938b37a415c42a0635b8a19893a3a19bb (diff) | |
download | talos-obmc-linux-d4e948636bd1d9bdf07d38d63d324812725f9d88.tar.gz talos-obmc-linux-d4e948636bd1d9bdf07d38d63d324812725f9d88.zip |
mfd: Constify aat2870-core i2c_device_id table
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/aat2870-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/aat2870-core.c b/drivers/mfd/aat2870-core.c index 762061712db6..e6da563178df 100644 --- a/drivers/mfd/aat2870-core.c +++ b/drivers/mfd/aat2870-core.c @@ -500,7 +500,7 @@ static int aat2870_i2c_resume(struct i2c_client *client) #define aat2870_i2c_resume NULL #endif /* CONFIG_PM */ -static struct i2c_device_id aat2870_i2c_id_table[] = { +static const struct i2c_device_id aat2870_i2c_id_table[] = { { "aat2870", 0 }, { } }; |