diff options
author | Jean Delvare <khali@linux-fr.org> | 2008-01-27 18:14:47 +0100 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2008-01-27 18:14:47 +0100 |
commit | 922539a0a3c44e3b8dcf1025910f08e1940ba49f (patch) | |
tree | 3e57c826212103be9f9b09772ceb89753f328bc4 /drivers/rtc/rtc-pcf8583.c | |
parent | bfb6df24facfde7ec6191edbba798777efb3c375 (diff) | |
download | linux-stable-922539a0a3c44e3b8dcf1025910f08e1940ba49f.tar.gz linux-stable-922539a0a3c44e3b8dcf1025910f08e1940ba49f.tar.bz2 linux-stable-922539a0a3c44e3b8dcf1025910f08e1940ba49f.zip |
i2c: normal_i2c can be made const (rtc drivers)
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Alessandro Zummo <alessandro.zummo@towertech.it>
Diffstat (limited to 'drivers/rtc/rtc-pcf8583.c')
-rw-r--r-- | drivers/rtc/rtc-pcf8583.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-pcf8583.c b/drivers/rtc/rtc-pcf8583.c index 556d0e7da35b..c973ba94c422 100644 --- a/drivers/rtc/rtc-pcf8583.c +++ b/drivers/rtc/rtc-pcf8583.c @@ -40,7 +40,7 @@ struct pcf8583 { #define CTRL_ALARM 0x02 #define CTRL_TIMER 0x01 -static unsigned short normal_i2c[] = { 0x50, I2C_CLIENT_END }; +static const unsigned short normal_i2c[] = { 0x50, I2C_CLIENT_END }; /* Module parameters */ I2C_CLIENT_INSMOD; |