diff options
author | Jean Delvare <khali@linux-fr.org> | 2008-01-27 12:14:47 -0500 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2008-01-27 12:14:47 -0500 |
commit | 2cdddeb8d7dd42dc1847b110228a626d25a1e468 (patch) | |
tree | b349ef86c00f4fd732266dfe6dea2fd8b74a1c52 /drivers/macintosh/therm_windtunnel.c | |
parent | 922539a0a3c44e3b8dcf1025910f08e1940ba49f (diff) |
i2c: normal_i2c can be made const (remaining drivers)
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/macintosh/therm_windtunnel.c')
-rw-r--r-- | drivers/macintosh/therm_windtunnel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/macintosh/therm_windtunnel.c b/drivers/macintosh/therm_windtunnel.c index 5452da1bb1a5..7c57e7a4e00f 100644 --- a/drivers/macintosh/therm_windtunnel.c +++ b/drivers/macintosh/therm_windtunnel.c | |||
@@ -52,7 +52,7 @@ | |||
52 | static int do_probe( struct i2c_adapter *adapter, int addr, int kind); | 52 | static int do_probe( struct i2c_adapter *adapter, int addr, int kind); |
53 | 53 | ||
54 | /* scan 0x48-0x4f (DS1775) and 0x2c-2x2f (ADM1030) */ | 54 | /* scan 0x48-0x4f (DS1775) and 0x2c-2x2f (ADM1030) */ |
55 | static unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, | 55 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, |
56 | 0x4c, 0x4d, 0x4e, 0x4f, | 56 | 0x4c, 0x4d, 0x4e, 0x4f, |
57 | 0x2c, 0x2d, 0x2e, 0x2f, | 57 | 0x2c, 0x2d, 0x2e, 0x2f, |
58 | I2C_CLIENT_END }; | 58 | I2C_CLIENT_END }; |