aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/chips/pcf8574.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/i2c/chips/pcf8574.c')
-rw-r--r--drivers/i2c/chips/pcf8574.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/i2c/chips/pcf8574.c b/drivers/i2c/chips/pcf8574.c
index 21c6dd69193c..b3b830ccf209 100644
--- a/drivers/i2c/chips/pcf8574.c
+++ b/drivers/i2c/chips/pcf8574.c
@@ -41,9 +41,11 @@
41#include <linux/i2c.h> 41#include <linux/i2c.h>
42 42
43/* Addresses to scan */ 43/* Addresses to scan */
44static unsigned short normal_i2c[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 44static const unsigned short normal_i2c[] = {
45 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 45 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
46 I2C_CLIENT_END }; 46 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
47 I2C_CLIENT_END
48};
47 49
48/* Insmod parameters */ 50/* Insmod parameters */
49I2C_CLIENT_INSMOD_2(pcf8574, pcf8574a); 51I2C_CLIENT_INSMOD_2(pcf8574, pcf8574a);