diff options
30 files changed, 30 insertions, 121 deletions
diff --git a/drivers/hwmon/adm1026.c b/drivers/hwmon/adm1026.c index 85bf23aea7db..65335b268fa9 100644 --- a/drivers/hwmon/adm1026.c +++ b/drivers/hwmon/adm1026.c | |||
| @@ -37,9 +37,6 @@ | |||
| 37 | /* Addresses to scan */ | 37 | /* Addresses to scan */ |
| 38 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; | 38 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; |
| 39 | 39 | ||
| 40 | /* Insmod parameters */ | ||
| 41 | I2C_CLIENT_INSMOD_1(adm1026); | ||
| 42 | |||
| 43 | static int gpio_input[17] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, | 40 | static int gpio_input[17] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 44 | -1, -1, -1, -1, -1, -1, -1, -1 }; | 41 | -1, -1, -1, -1, -1, -1, -1, -1 }; |
| 45 | static int gpio_output[17] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, | 42 | static int gpio_output[17] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| @@ -305,7 +302,7 @@ static void adm1026_init_client(struct i2c_client *client); | |||
| 305 | 302 | ||
| 306 | 303 | ||
| 307 | static const struct i2c_device_id adm1026_id[] = { | 304 | static const struct i2c_device_id adm1026_id[] = { |
| 308 | { "adm1026", adm1026 }, | 305 | { "adm1026", 0 }, |
| 309 | { } | 306 | { } |
| 310 | }; | 307 | }; |
| 311 | MODULE_DEVICE_TABLE(i2c, adm1026_id); | 308 | MODULE_DEVICE_TABLE(i2c, adm1026_id); |
diff --git a/drivers/hwmon/adm1029.c b/drivers/hwmon/adm1029.c index a006ae5fbd2b..0b8a3b145bd2 100644 --- a/drivers/hwmon/adm1029.c +++ b/drivers/hwmon/adm1029.c | |||
| @@ -44,12 +44,6 @@ static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, | |||
| 44 | }; | 44 | }; |
| 45 | 45 | ||
| 46 | /* | 46 | /* |
| 47 | * Insmod parameters | ||
| 48 | */ | ||
| 49 | |||
| 50 | I2C_CLIENT_INSMOD_1(adm1029); | ||
| 51 | |||
| 52 | /* | ||
| 53 | * The ADM1029 registers | 47 | * The ADM1029 registers |
| 54 | * Manufacturer ID is 0x41 for Analog Devices | 48 | * Manufacturer ID is 0x41 for Analog Devices |
| 55 | */ | 49 | */ |
| @@ -128,7 +122,7 @@ static int adm1029_init_client(struct i2c_client *client); | |||
| 128 | */ | 122 | */ |
| 129 | 123 | ||
| 130 | static const struct i2c_device_id adm1029_id[] = { | 124 | static const struct i2c_device_id adm1029_id[] = { |
| 131 | { "adm1029", adm1029 }, | 125 | { "adm1029", 0 }, |
| 132 | { } | 126 | { } |
| 133 | }; | 127 | }; |
| 134 | MODULE_DEVICE_TABLE(i2c, adm1029_id); | 128 | MODULE_DEVICE_TABLE(i2c, adm1029_id); |
diff --git a/drivers/hwmon/ads7828.c b/drivers/hwmon/ads7828.c index 3827ce4be071..aac85f3aed50 100644 --- a/drivers/hwmon/ads7828.c +++ b/drivers/hwmon/ads7828.c | |||
| @@ -47,10 +47,7 @@ | |||
| 47 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, | 47 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, |
| 48 | I2C_CLIENT_END }; | 48 | I2C_CLIENT_END }; |
| 49 | 49 | ||
| 50 | /* Insmod parameters */ | 50 | /* Module parameters */ |
| 51 | I2C_CLIENT_INSMOD_1(ads7828); | ||
| 52 | |||
| 53 | /* Other module parameters */ | ||
| 54 | static int se_input = 1; /* Default is SE, 0 == diff */ | 51 | static int se_input = 1; /* Default is SE, 0 == diff */ |
| 55 | static int int_vref = 1; /* Default is internal ref ON */ | 52 | static int int_vref = 1; /* Default is internal ref ON */ |
| 56 | static int vref_mv = ADS7828_INT_VREF_MV; /* set if vref != 2.5V */ | 53 | static int vref_mv = ADS7828_INT_VREF_MV; /* set if vref != 2.5V */ |
| @@ -168,7 +165,7 @@ static int ads7828_remove(struct i2c_client *client) | |||
| 168 | } | 165 | } |
| 169 | 166 | ||
| 170 | static const struct i2c_device_id ads7828_id[] = { | 167 | static const struct i2c_device_id ads7828_id[] = { |
| 171 | { "ads7828", ads7828 }, | 168 | { "ads7828", 0 }, |
| 172 | { } | 169 | { } |
| 173 | }; | 170 | }; |
| 174 | MODULE_DEVICE_TABLE(i2c, ads7828_id); | 171 | MODULE_DEVICE_TABLE(i2c, ads7828_id); |
diff --git a/drivers/hwmon/adt7462.c b/drivers/hwmon/adt7462.c index 325700428ef0..a1a7ef14b519 100644 --- a/drivers/hwmon/adt7462.c +++ b/drivers/hwmon/adt7462.c | |||
| @@ -32,9 +32,6 @@ | |||
| 32 | /* Addresses to scan */ | 32 | /* Addresses to scan */ |
| 33 | static const unsigned short normal_i2c[] = { 0x58, 0x5C, I2C_CLIENT_END }; | 33 | static const unsigned short normal_i2c[] = { 0x58, 0x5C, I2C_CLIENT_END }; |
| 34 | 34 | ||
| 35 | /* Insmod parameters */ | ||
| 36 | I2C_CLIENT_INSMOD_1(adt7462); | ||
| 37 | |||
| 38 | /* ADT7462 registers */ | 35 | /* ADT7462 registers */ |
| 39 | #define ADT7462_REG_DEVICE 0x3D | 36 | #define ADT7462_REG_DEVICE 0x3D |
| 40 | #define ADT7462_REG_VENDOR 0x3E | 37 | #define ADT7462_REG_VENDOR 0x3E |
| @@ -242,7 +239,7 @@ static int adt7462_detect(struct i2c_client *client, | |||
| 242 | static int adt7462_remove(struct i2c_client *client); | 239 | static int adt7462_remove(struct i2c_client *client); |
| 243 | 240 | ||
| 244 | static const struct i2c_device_id adt7462_id[] = { | 241 | static const struct i2c_device_id adt7462_id[] = { |
| 245 | { "adt7462", adt7462 }, | 242 | { "adt7462", 0 }, |
| 246 | { } | 243 | { } |
| 247 | }; | 244 | }; |
| 248 | MODULE_DEVICE_TABLE(i2c, adt7462_id); | 245 | MODULE_DEVICE_TABLE(i2c, adt7462_id); |
diff --git a/drivers/hwmon/adt7470.c b/drivers/hwmon/adt7470.c index 33aa0fa3e990..3445ce1cba81 100644 --- a/drivers/hwmon/adt7470.c +++ b/drivers/hwmon/adt7470.c | |||
| @@ -33,9 +33,6 @@ | |||
| 33 | /* Addresses to scan */ | 33 | /* Addresses to scan */ |
| 34 | static const unsigned short normal_i2c[] = { 0x2C, 0x2E, 0x2F, I2C_CLIENT_END }; | 34 | static const unsigned short normal_i2c[] = { 0x2C, 0x2E, 0x2F, I2C_CLIENT_END }; |
| 35 | 35 | ||
| 36 | /* Insmod parameters */ | ||
| 37 | I2C_CLIENT_INSMOD_1(adt7470); | ||
| 38 | |||
| 39 | /* ADT7470 registers */ | 36 | /* ADT7470 registers */ |
| 40 | #define ADT7470_REG_BASE_ADDR 0x20 | 37 | #define ADT7470_REG_BASE_ADDR 0x20 |
| 41 | #define ADT7470_REG_TEMP_BASE_ADDR 0x20 | 38 | #define ADT7470_REG_TEMP_BASE_ADDR 0x20 |
| @@ -182,7 +179,7 @@ static int adt7470_detect(struct i2c_client *client, | |||
| 182 | static int adt7470_remove(struct i2c_client *client); | 179 | static int adt7470_remove(struct i2c_client *client); |
| 183 | 180 | ||
| 184 | static const struct i2c_device_id adt7470_id[] = { | 181 | static const struct i2c_device_id adt7470_id[] = { |
| 185 | { "adt7470", adt7470 }, | 182 | { "adt7470", 0 }, |
| 186 | { } | 183 | { } |
| 187 | }; | 184 | }; |
| 188 | MODULE_DEVICE_TABLE(i2c, adt7470_id); | 185 | MODULE_DEVICE_TABLE(i2c, adt7470_id); |
diff --git a/drivers/hwmon/adt7473.c b/drivers/hwmon/adt7473.c index 1535733ddf19..434576f61c84 100644 --- a/drivers/hwmon/adt7473.c +++ b/drivers/hwmon/adt7473.c | |||
| @@ -32,9 +32,6 @@ | |||
| 32 | /* Addresses to scan */ | 32 | /* Addresses to scan */ |
| 33 | static const unsigned short normal_i2c[] = { 0x2C, 0x2D, 0x2E, I2C_CLIENT_END }; | 33 | static const unsigned short normal_i2c[] = { 0x2C, 0x2D, 0x2E, I2C_CLIENT_END }; |
| 34 | 34 | ||
| 35 | /* Insmod parameters */ | ||
| 36 | I2C_CLIENT_INSMOD_1(adt7473); | ||
| 37 | |||
| 38 | /* ADT7473 registers */ | 35 | /* ADT7473 registers */ |
| 39 | #define ADT7473_REG_BASE_ADDR 0x20 | 36 | #define ADT7473_REG_BASE_ADDR 0x20 |
| 40 | 37 | ||
| @@ -171,7 +168,7 @@ static int adt7473_detect(struct i2c_client *client, | |||
| 171 | static int adt7473_remove(struct i2c_client *client); | 168 | static int adt7473_remove(struct i2c_client *client); |
| 172 | 169 | ||
| 173 | static const struct i2c_device_id adt7473_id[] = { | 170 | static const struct i2c_device_id adt7473_id[] = { |
| 174 | { "adt7473", adt7473 }, | 171 | { "adt7473", 0 }, |
| 175 | { } | 172 | { } |
| 176 | }; | 173 | }; |
| 177 | 174 | ||
diff --git a/drivers/hwmon/asb100.c b/drivers/hwmon/asb100.c index a92512a4a366..7dada559b3a1 100644 --- a/drivers/hwmon/asb100.c +++ b/drivers/hwmon/asb100.c | |||
| @@ -51,9 +51,6 @@ | |||
| 51 | /* I2C addresses to scan */ | 51 | /* I2C addresses to scan */ |
| 52 | static const unsigned short normal_i2c[] = { 0x2d, I2C_CLIENT_END }; | 52 | static const unsigned short normal_i2c[] = { 0x2d, I2C_CLIENT_END }; |
| 53 | 53 | ||
| 54 | /* Insmod parameters */ | ||
| 55 | I2C_CLIENT_INSMOD_1(asb100); | ||
| 56 | |||
| 57 | static unsigned short force_subclients[4]; | 54 | static unsigned short force_subclients[4]; |
| 58 | module_param_array(force_subclients, short, NULL, 0); | 55 | module_param_array(force_subclients, short, NULL, 0); |
| 59 | MODULE_PARM_DESC(force_subclients, "List of subclient addresses: " | 56 | MODULE_PARM_DESC(force_subclients, "List of subclient addresses: " |
| @@ -216,7 +213,7 @@ static struct asb100_data *asb100_update_device(struct device *dev); | |||
| 216 | static void asb100_init_client(struct i2c_client *client); | 213 | static void asb100_init_client(struct i2c_client *client); |
| 217 | 214 | ||
| 218 | static const struct i2c_device_id asb100_id[] = { | 215 | static const struct i2c_device_id asb100_id[] = { |
| 219 | { "asb100", asb100 }, | 216 | { "asb100", 0 }, |
| 220 | { } | 217 | { } |
| 221 | }; | 218 | }; |
| 222 | MODULE_DEVICE_TABLE(i2c, asb100_id); | 219 | MODULE_DEVICE_TABLE(i2c, asb100_id); |
diff --git a/drivers/hwmon/atxp1.c b/drivers/hwmon/atxp1.c index b0c3051d8a4f..94cadc19f0c5 100644 --- a/drivers/hwmon/atxp1.c +++ b/drivers/hwmon/atxp1.c | |||
| @@ -44,8 +44,6 @@ MODULE_AUTHOR("Sebastian Witt <se.witt@gmx.net>"); | |||
| 44 | 44 | ||
| 45 | static const unsigned short normal_i2c[] = { 0x37, 0x4e, I2C_CLIENT_END }; | 45 | static const unsigned short normal_i2c[] = { 0x37, 0x4e, I2C_CLIENT_END }; |
| 46 | 46 | ||
| 47 | I2C_CLIENT_INSMOD_1(atxp1); | ||
| 48 | |||
| 49 | static int atxp1_probe(struct i2c_client *client, | 47 | static int atxp1_probe(struct i2c_client *client, |
| 50 | const struct i2c_device_id *id); | 48 | const struct i2c_device_id *id); |
| 51 | static int atxp1_remove(struct i2c_client *client); | 49 | static int atxp1_remove(struct i2c_client *client); |
| @@ -53,7 +51,7 @@ static struct atxp1_data * atxp1_update_device(struct device *dev); | |||
| 53 | static int atxp1_detect(struct i2c_client *client, struct i2c_board_info *info); | 51 | static int atxp1_detect(struct i2c_client *client, struct i2c_board_info *info); |
| 54 | 52 | ||
| 55 | static const struct i2c_device_id atxp1_id[] = { | 53 | static const struct i2c_device_id atxp1_id[] = { |
| 56 | { "atxp1", atxp1 }, | 54 | { "atxp1", 0 }, |
| 57 | { } | 55 | { } |
| 58 | }; | 56 | }; |
| 59 | MODULE_DEVICE_TABLE(i2c, atxp1_id); | 57 | MODULE_DEVICE_TABLE(i2c, atxp1_id); |
diff --git a/drivers/hwmon/ds1621.c b/drivers/hwmon/ds1621.c index dfa4329090d4..e11363467a8d 100644 --- a/drivers/hwmon/ds1621.c +++ b/drivers/hwmon/ds1621.c | |||
| @@ -38,7 +38,6 @@ static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, | |||
| 38 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; | 38 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; |
| 39 | 39 | ||
| 40 | /* Insmod parameters */ | 40 | /* Insmod parameters */ |
| 41 | I2C_CLIENT_INSMOD_1(ds1621); | ||
| 42 | static int polarity = -1; | 41 | static int polarity = -1; |
| 43 | module_param(polarity, int, 0); | 42 | module_param(polarity, int, 0); |
| 44 | MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low"); | 43 | MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low"); |
| @@ -305,8 +304,8 @@ static int ds1621_remove(struct i2c_client *client) | |||
| 305 | } | 304 | } |
| 306 | 305 | ||
| 307 | static const struct i2c_device_id ds1621_id[] = { | 306 | static const struct i2c_device_id ds1621_id[] = { |
| 308 | { "ds1621", ds1621 }, | 307 | { "ds1621", 0 }, |
| 309 | { "ds1625", ds1621 }, | 308 | { "ds1625", 0 }, |
| 310 | { } | 309 | { } |
| 311 | }; | 310 | }; |
| 312 | MODULE_DEVICE_TABLE(i2c, ds1621_id); | 311 | MODULE_DEVICE_TABLE(i2c, ds1621_id); |
diff --git a/drivers/hwmon/gl520sm.c b/drivers/hwmon/gl520sm.c index c0ec8c28731e..ec588026f0a9 100644 --- a/drivers/hwmon/gl520sm.c +++ b/drivers/hwmon/gl520sm.c | |||
| @@ -41,9 +41,6 @@ MODULE_PARM_DESC(extra_sensor_type, "Type of extra sensor (0=autodetect, 1=tempe | |||
| 41 | /* Addresses to scan */ | 41 | /* Addresses to scan */ |
| 42 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END }; | 42 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END }; |
| 43 | 43 | ||
| 44 | /* Insmod parameters */ | ||
| 45 | I2C_CLIENT_INSMOD_1(gl520sm); | ||
| 46 | |||
| 47 | /* Many GL520 constants specified below | 44 | /* Many GL520 constants specified below |
| 48 | One of the inputs can be configured as either temp or voltage. | 45 | One of the inputs can be configured as either temp or voltage. |
| 49 | That's why _TEMP2 and _IN4 access the same register | 46 | That's why _TEMP2 and _IN4 access the same register |
| @@ -90,7 +87,7 @@ static struct gl520_data *gl520_update_device(struct device *dev); | |||
| 90 | 87 | ||
| 91 | /* Driver data */ | 88 | /* Driver data */ |
| 92 | static const struct i2c_device_id gl520_id[] = { | 89 | static const struct i2c_device_id gl520_id[] = { |
| 93 | { "gl520sm", gl520sm }, | 90 | { "gl520sm", 0 }, |
| 94 | { } | 91 | { } |
| 95 | }; | 92 | }; |
| 96 | MODULE_DEVICE_TABLE(i2c, gl520_id); | 93 | MODULE_DEVICE_TABLE(i2c, gl520_id); |
diff --git a/drivers/hwmon/lm63.c b/drivers/hwmon/lm63.c index 1426a455071c..bf81aff7051d 100644 --- a/drivers/hwmon/lm63.c +++ b/drivers/hwmon/lm63.c | |||
| @@ -56,12 +56,6 @@ | |||
| 56 | static const unsigned short normal_i2c[] = { 0x4c, I2C_CLIENT_END }; | 56 | static const unsigned short normal_i2c[] = { 0x4c, I2C_CLIENT_END }; |
| 57 | 57 | ||
| 58 | /* | 58 | /* |
| 59 | * Insmod parameters | ||
| 60 | */ | ||
| 61 | |||
| 62 | I2C_CLIENT_INSMOD_1(lm63); | ||
| 63 | |||
| 64 | /* | ||
| 65 | * The LM63 registers | 59 | * The LM63 registers |
| 66 | */ | 60 | */ |
| 67 | 61 | ||
| @@ -142,7 +136,7 @@ static void lm63_init_client(struct i2c_client *client); | |||
| 142 | */ | 136 | */ |
| 143 | 137 | ||
| 144 | static const struct i2c_device_id lm63_id[] = { | 138 | static const struct i2c_device_id lm63_id[] = { |
| 145 | { "lm63", lm63 }, | 139 | { "lm63", 0 }, |
| 146 | { } | 140 | { } |
| 147 | }; | 141 | }; |
| 148 | MODULE_DEVICE_TABLE(i2c, lm63_id); | 142 | MODULE_DEVICE_TABLE(i2c, lm63_id); |
diff --git a/drivers/hwmon/lm73.c b/drivers/hwmon/lm73.c index fb6ab9a9a608..c5f39ba103c0 100644 --- a/drivers/hwmon/lm73.c +++ b/drivers/hwmon/lm73.c | |||
| @@ -27,9 +27,6 @@ | |||
| 27 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4c, | 27 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4c, |
| 28 | 0x4d, 0x4e, I2C_CLIENT_END }; | 28 | 0x4d, 0x4e, I2C_CLIENT_END }; |
| 29 | 29 | ||
| 30 | /* Insmod parameters */ | ||
| 31 | I2C_CLIENT_INSMOD_1(lm73); | ||
| 32 | |||
| 33 | /* LM73 registers */ | 30 | /* LM73 registers */ |
| 34 | #define LM73_REG_INPUT 0x00 | 31 | #define LM73_REG_INPUT 0x00 |
| 35 | #define LM73_REG_CONF 0x01 | 32 | #define LM73_REG_CONF 0x01 |
| @@ -145,7 +142,7 @@ static int lm73_remove(struct i2c_client *client) | |||
| 145 | } | 142 | } |
| 146 | 143 | ||
| 147 | static const struct i2c_device_id lm73_ids[] = { | 144 | static const struct i2c_device_id lm73_ids[] = { |
| 148 | { "lm73", lm73 }, | 145 | { "lm73", 0 }, |
| 149 | { /* LIST END */ } | 146 | { /* LIST END */ } |
| 150 | }; | 147 | }; |
| 151 | MODULE_DEVICE_TABLE(i2c, lm73_ids); | 148 | MODULE_DEVICE_TABLE(i2c, lm73_ids); |
diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c index ce2423cd8198..8ae2cfe2d827 100644 --- a/drivers/hwmon/lm75.c +++ b/drivers/hwmon/lm75.c | |||
| @@ -32,15 +32,12 @@ | |||
| 32 | 32 | ||
| 33 | /* | 33 | /* |
| 34 | * This driver handles the LM75 and compatible digital temperature sensors. | 34 | * This driver handles the LM75 and compatible digital temperature sensors. |
| 35 | * Only types which are _not_ listed in I2C_CLIENT_INSMOD_*() need to be | ||
| 36 | * listed here. We start at 9 since I2C_CLIENT_INSMOD_*() currently allow | ||
| 37 | * definition of up to 8 chip types (plus zero). | ||
| 38 | */ | 35 | */ |
| 39 | 36 | ||
| 40 | enum lm75_type { /* keep sorted in alphabetical order */ | 37 | enum lm75_type { /* keep sorted in alphabetical order */ |
| 41 | ds1775 = 9, | 38 | ds1775, |
| 42 | ds75, | 39 | ds75, |
| 43 | /* lm75 -- in I2C_CLIENT_INSMOD_1() */ | 40 | lm75, |
| 44 | lm75a, | 41 | lm75a, |
| 45 | max6625, | 42 | max6625, |
| 46 | max6626, | 43 | max6626, |
| @@ -58,9 +55,6 @@ enum lm75_type { /* keep sorted in alphabetical order */ | |||
| 58 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, | 55 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, |
| 59 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; | 56 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; |
| 60 | 57 | ||
| 61 | /* Insmod parameters */ | ||
| 62 | I2C_CLIENT_INSMOD_1(lm75); | ||
| 63 | |||
| 64 | 58 | ||
| 65 | /* The LM75 registers */ | 59 | /* The LM75 registers */ |
| 66 | #define LM75_REG_CONF 0x01 | 60 | #define LM75_REG_CONF 0x01 |
diff --git a/drivers/hwmon/lm77.c b/drivers/hwmon/lm77.c index b6105e570b0e..b28a297be50c 100644 --- a/drivers/hwmon/lm77.c +++ b/drivers/hwmon/lm77.c | |||
| @@ -39,9 +39,6 @@ | |||
| 39 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, | 39 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, |
| 40 | I2C_CLIENT_END }; | 40 | I2C_CLIENT_END }; |
| 41 | 41 | ||
| 42 | /* Insmod parameters */ | ||
| 43 | I2C_CLIENT_INSMOD_1(lm77); | ||
| 44 | |||
| 45 | /* The LM77 registers */ | 42 | /* The LM77 registers */ |
| 46 | #define LM77_REG_TEMP 0x00 | 43 | #define LM77_REG_TEMP 0x00 |
| 47 | #define LM77_REG_CONF 0x01 | 44 | #define LM77_REG_CONF 0x01 |
| @@ -76,7 +73,7 @@ static struct lm77_data *lm77_update_device(struct device *dev); | |||
| 76 | 73 | ||
| 77 | 74 | ||
| 78 | static const struct i2c_device_id lm77_id[] = { | 75 | static const struct i2c_device_id lm77_id[] = { |
| 79 | { "lm77", lm77 }, | 76 | { "lm77", 0 }, |
| 80 | { } | 77 | { } |
| 81 | }; | 78 | }; |
| 82 | MODULE_DEVICE_TABLE(i2c, lm77_id); | 79 | MODULE_DEVICE_TABLE(i2c, lm77_id); |
diff --git a/drivers/hwmon/lm80.c b/drivers/hwmon/lm80.c index 1cf5ff5bfa43..18a0e6c5fe88 100644 --- a/drivers/hwmon/lm80.c +++ b/drivers/hwmon/lm80.c | |||
| @@ -35,9 +35,6 @@ | |||
| 35 | static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, | 35 | static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, |
| 36 | 0x2e, 0x2f, I2C_CLIENT_END }; | 36 | 0x2e, 0x2f, I2C_CLIENT_END }; |
| 37 | 37 | ||
| 38 | /* Insmod parameters */ | ||
| 39 | I2C_CLIENT_INSMOD_1(lm80); | ||
| 40 | |||
| 41 | /* Many LM80 constants specified below */ | 38 | /* Many LM80 constants specified below */ |
| 42 | 39 | ||
| 43 | /* The LM80 registers */ | 40 | /* The LM80 registers */ |
| @@ -145,7 +142,7 @@ static int lm80_write_value(struct i2c_client *client, u8 reg, u8 value); | |||
| 145 | */ | 142 | */ |
| 146 | 143 | ||
| 147 | static const struct i2c_device_id lm80_id[] = { | 144 | static const struct i2c_device_id lm80_id[] = { |
| 148 | { "lm80", lm80 }, | 145 | { "lm80", 0 }, |
| 149 | { } | 146 | { } |
| 150 | }; | 147 | }; |
| 151 | MODULE_DEVICE_TABLE(i2c, lm80_id); | 148 | MODULE_DEVICE_TABLE(i2c, lm80_id); |
diff --git a/drivers/hwmon/lm92.c b/drivers/hwmon/lm92.c index b582b3b7fdee..7c31e6205f85 100644 --- a/drivers/hwmon/lm92.c +++ b/drivers/hwmon/lm92.c | |||
| @@ -54,9 +54,6 @@ | |||
| 54 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, | 54 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, |
| 55 | I2C_CLIENT_END }; | 55 | I2C_CLIENT_END }; |
| 56 | 56 | ||
| 57 | /* Insmod parameters */ | ||
| 58 | I2C_CLIENT_INSMOD_1(lm92); | ||
| 59 | |||
| 60 | /* The LM92 registers */ | 57 | /* The LM92 registers */ |
| 61 | #define LM92_REG_CONFIG 0x01 /* 8-bit, RW */ | 58 | #define LM92_REG_CONFIG 0x01 /* 8-bit, RW */ |
| 62 | #define LM92_REG_TEMP 0x00 /* 16-bit, RO */ | 59 | #define LM92_REG_TEMP 0x00 /* 16-bit, RO */ |
| @@ -401,7 +398,7 @@ static int lm92_remove(struct i2c_client *client) | |||
| 401 | */ | 398 | */ |
| 402 | 399 | ||
| 403 | static const struct i2c_device_id lm92_id[] = { | 400 | static const struct i2c_device_id lm92_id[] = { |
| 404 | { "lm92", lm92 }, | 401 | { "lm92", 0 }, |
| 405 | /* max6635 could be added here */ | 402 | /* max6635 could be added here */ |
| 406 | { } | 403 | { } |
| 407 | }; | 404 | }; |
diff --git a/drivers/hwmon/lm93.c b/drivers/hwmon/lm93.c index d160dfdb513f..6669255aadcf 100644 --- a/drivers/hwmon/lm93.c +++ b/drivers/hwmon/lm93.c | |||
| @@ -145,7 +145,6 @@ | |||
| 145 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; | 145 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; |
| 146 | 146 | ||
| 147 | /* Insmod parameters */ | 147 | /* Insmod parameters */ |
| 148 | I2C_CLIENT_INSMOD_1(lm93); | ||
| 149 | 148 | ||
| 150 | static int disable_block; | 149 | static int disable_block; |
| 151 | module_param(disable_block, bool, 0); | 150 | module_param(disable_block, bool, 0); |
| @@ -2602,7 +2601,7 @@ static int lm93_remove(struct i2c_client *client) | |||
| 2602 | } | 2601 | } |
| 2603 | 2602 | ||
| 2604 | static const struct i2c_device_id lm93_id[] = { | 2603 | static const struct i2c_device_id lm93_id[] = { |
| 2605 | { "lm93", lm93 }, | 2604 | { "lm93", 0 }, |
| 2606 | { } | 2605 | { } |
| 2607 | }; | 2606 | }; |
| 2608 | MODULE_DEVICE_TABLE(i2c, lm93_id); | 2607 | MODULE_DEVICE_TABLE(i2c, lm93_id); |
diff --git a/drivers/hwmon/lm95241.c b/drivers/hwmon/lm95241.c index 55e3bfd49706..8fc8eb8cba47 100644 --- a/drivers/hwmon/lm95241.c +++ b/drivers/hwmon/lm95241.c | |||
| @@ -39,9 +39,6 @@ | |||
| 39 | static const unsigned short normal_i2c[] = { | 39 | static const unsigned short normal_i2c[] = { |
| 40 | 0x19, 0x2a, 0x2b, I2C_CLIENT_END}; | 40 | 0x19, 0x2a, 0x2b, I2C_CLIENT_END}; |
| 41 | 41 | ||
| 42 | /* Insmod parameters */ | ||
| 43 | I2C_CLIENT_INSMOD_1(lm95241); | ||
| 44 | |||
| 45 | /* LM95241 registers */ | 42 | /* LM95241 registers */ |
| 46 | #define LM95241_REG_R_MAN_ID 0xFE | 43 | #define LM95241_REG_R_MAN_ID 0xFE |
| 47 | #define LM95241_REG_R_CHIP_ID 0xFF | 44 | #define LM95241_REG_R_CHIP_ID 0xFF |
| @@ -446,7 +443,7 @@ static struct lm95241_data *lm95241_update_device(struct device *dev) | |||
| 446 | 443 | ||
| 447 | /* Driver data (common to all clients) */ | 444 | /* Driver data (common to all clients) */ |
| 448 | static const struct i2c_device_id lm95241_id[] = { | 445 | static const struct i2c_device_id lm95241_id[] = { |
| 449 | { "lm95241", lm95241 }, | 446 | { "lm95241", 0 }, |
| 450 | { } | 447 | { } |
| 451 | }; | 448 | }; |
| 452 | MODULE_DEVICE_TABLE(i2c, lm95241_id); | 449 | MODULE_DEVICE_TABLE(i2c, lm95241_id); |
diff --git a/drivers/hwmon/max1619.c b/drivers/hwmon/max1619.c index 94cea29f157b..022ded098100 100644 --- a/drivers/hwmon/max1619.c +++ b/drivers/hwmon/max1619.c | |||
| @@ -41,12 +41,6 @@ static const unsigned short normal_i2c[] = { | |||
| 41 | 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END }; | 41 | 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END }; |
| 42 | 42 | ||
| 43 | /* | 43 | /* |
| 44 | * Insmod parameters | ||
| 45 | */ | ||
| 46 | |||
| 47 | I2C_CLIENT_INSMOD_1(max1619); | ||
| 48 | |||
| 49 | /* | ||
| 50 | * The MAX1619 registers | 44 | * The MAX1619 registers |
| 51 | */ | 45 | */ |
| 52 | 46 | ||
| @@ -99,7 +93,7 @@ static struct max1619_data *max1619_update_device(struct device *dev); | |||
| 99 | */ | 93 | */ |
| 100 | 94 | ||
| 101 | static const struct i2c_device_id max1619_id[] = { | 95 | static const struct i2c_device_id max1619_id[] = { |
| 102 | { "max1619", max1619 }, | 96 | { "max1619", 0 }, |
| 103 | { } | 97 | { } |
| 104 | }; | 98 | }; |
| 105 | MODULE_DEVICE_TABLE(i2c, max1619_id); | 99 | MODULE_DEVICE_TABLE(i2c, max1619_id); |
diff --git a/drivers/hwmon/max6650.c b/drivers/hwmon/max6650.c index c7c126cf22dd..a0160ee5caef 100644 --- a/drivers/hwmon/max6650.c +++ b/drivers/hwmon/max6650.c | |||
| @@ -62,8 +62,6 @@ module_param(fan_voltage, int, S_IRUGO); | |||
| 62 | module_param(prescaler, int, S_IRUGO); | 62 | module_param(prescaler, int, S_IRUGO); |
| 63 | module_param(clock, int, S_IRUGO); | 63 | module_param(clock, int, S_IRUGO); |
| 64 | 64 | ||
| 65 | I2C_CLIENT_INSMOD_1(max6650); | ||
| 66 | |||
| 67 | /* | 65 | /* |
| 68 | * MAX 6650/6651 registers | 66 | * MAX 6650/6651 registers |
| 69 | */ | 67 | */ |
| @@ -127,7 +125,7 @@ static struct max6650_data *max6650_update_device(struct device *dev); | |||
| 127 | */ | 125 | */ |
| 128 | 126 | ||
| 129 | static const struct i2c_device_id max6650_id[] = { | 127 | static const struct i2c_device_id max6650_id[] = { |
| 130 | { "max6650", max6650 }, | 128 | { "max6650", 0 }, |
| 131 | { } | 129 | { } |
| 132 | }; | 130 | }; |
| 133 | MODULE_DEVICE_TABLE(i2c, max6650_id); | 131 | MODULE_DEVICE_TABLE(i2c, max6650_id); |
diff --git a/drivers/hwmon/pcf8591.c b/drivers/hwmon/pcf8591.c index c19e61bd393c..d44787949851 100644 --- a/drivers/hwmon/pcf8591.c +++ b/drivers/hwmon/pcf8591.c | |||
| @@ -29,7 +29,6 @@ static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, | |||
| 29 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; | 29 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; |
| 30 | 30 | ||
| 31 | /* Insmod parameters */ | 31 | /* Insmod parameters */ |
| 32 | I2C_CLIENT_INSMOD_1(pcf8591); | ||
| 33 | 32 | ||
| 34 | static int input_mode; | 33 | static int input_mode; |
| 35 | module_param(input_mode, int, 0); | 34 | module_param(input_mode, int, 0); |
diff --git a/drivers/hwmon/smsc47m192.c b/drivers/hwmon/smsc47m192.c index 34df2e2ee28a..40b26673d87f 100644 --- a/drivers/hwmon/smsc47m192.c +++ b/drivers/hwmon/smsc47m192.c | |||
| @@ -36,9 +36,6 @@ | |||
| 36 | /* Addresses to scan */ | 36 | /* Addresses to scan */ |
| 37 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END }; | 37 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END }; |
| 38 | 38 | ||
| 39 | /* Insmod parameters */ | ||
| 40 | I2C_CLIENT_INSMOD_1(smsc47m192); | ||
| 41 | |||
| 42 | /* SMSC47M192 registers */ | 39 | /* SMSC47M192 registers */ |
| 43 | #define SMSC47M192_REG_IN(nr) ((nr)<6 ? (0x20 + (nr)) : \ | 40 | #define SMSC47M192_REG_IN(nr) ((nr)<6 ? (0x20 + (nr)) : \ |
| 44 | (0x50 + (nr) - 6)) | 41 | (0x50 + (nr) - 6)) |
| @@ -121,7 +118,7 @@ static int smsc47m192_remove(struct i2c_client *client); | |||
| 121 | static struct smsc47m192_data *smsc47m192_update_device(struct device *dev); | 118 | static struct smsc47m192_data *smsc47m192_update_device(struct device *dev); |
| 122 | 119 | ||
| 123 | static const struct i2c_device_id smsc47m192_id[] = { | 120 | static const struct i2c_device_id smsc47m192_id[] = { |
| 124 | { "smsc47m192", smsc47m192 }, | 121 | { "smsc47m192", 0 }, |
| 125 | { } | 122 | { } |
| 126 | }; | 123 | }; |
| 127 | MODULE_DEVICE_TABLE(i2c, smsc47m192_id); | 124 | MODULE_DEVICE_TABLE(i2c, smsc47m192_id); |
diff --git a/drivers/hwmon/w83791d.c b/drivers/hwmon/w83791d.c index e059cf0471b0..400a88bde278 100644 --- a/drivers/hwmon/w83791d.c +++ b/drivers/hwmon/w83791d.c | |||
| @@ -52,7 +52,6 @@ static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, 0x2f, | |||
| 52 | I2C_CLIENT_END }; | 52 | I2C_CLIENT_END }; |
| 53 | 53 | ||
| 54 | /* Insmod parameters */ | 54 | /* Insmod parameters */ |
| 55 | I2C_CLIENT_INSMOD_1(w83791d); | ||
| 56 | 55 | ||
| 57 | static unsigned short force_subclients[4]; | 56 | static unsigned short force_subclients[4]; |
| 58 | module_param_array(force_subclients, short, NULL, 0); | 57 | module_param_array(force_subclients, short, NULL, 0); |
| @@ -341,7 +340,7 @@ static void w83791d_print_debug(struct w83791d_data *data, struct device *dev); | |||
| 341 | static void w83791d_init_client(struct i2c_client *client); | 340 | static void w83791d_init_client(struct i2c_client *client); |
| 342 | 341 | ||
| 343 | static const struct i2c_device_id w83791d_id[] = { | 342 | static const struct i2c_device_id w83791d_id[] = { |
| 344 | { "w83791d", w83791d }, | 343 | { "w83791d", 0 }, |
| 345 | { } | 344 | { } |
| 346 | }; | 345 | }; |
| 347 | MODULE_DEVICE_TABLE(i2c, w83791d_id); | 346 | MODULE_DEVICE_TABLE(i2c, w83791d_id); |
diff --git a/drivers/hwmon/w83792d.c b/drivers/hwmon/w83792d.c index c6f198a3d924..679718e6b017 100644 --- a/drivers/hwmon/w83792d.c +++ b/drivers/hwmon/w83792d.c | |||
| @@ -50,7 +50,6 @@ static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, 0x2f, | |||
| 50 | I2C_CLIENT_END }; | 50 | I2C_CLIENT_END }; |
| 51 | 51 | ||
| 52 | /* Insmod parameters */ | 52 | /* Insmod parameters */ |
| 53 | I2C_CLIENT_INSMOD_1(w83792d); | ||
| 54 | 53 | ||
| 55 | static unsigned short force_subclients[4]; | 54 | static unsigned short force_subclients[4]; |
| 56 | module_param_array(force_subclients, short, NULL, 0); | 55 | module_param_array(force_subclients, short, NULL, 0); |
| @@ -314,7 +313,7 @@ static void w83792d_print_debug(struct w83792d_data *data, struct device *dev); | |||
| 314 | static void w83792d_init_client(struct i2c_client *client); | 313 | static void w83792d_init_client(struct i2c_client *client); |
| 315 | 314 | ||
| 316 | static const struct i2c_device_id w83792d_id[] = { | 315 | static const struct i2c_device_id w83792d_id[] = { |
| 317 | { "w83792d", w83792d }, | 316 | { "w83792d", 0 }, |
| 318 | { } | 317 | { } |
| 319 | }; | 318 | }; |
| 320 | MODULE_DEVICE_TABLE(i2c, w83792d_id); | 319 | MODULE_DEVICE_TABLE(i2c, w83792d_id); |
diff --git a/drivers/hwmon/w83793.c b/drivers/hwmon/w83793.c index ed32b18fbc42..9a2022b67495 100644 --- a/drivers/hwmon/w83793.c +++ b/drivers/hwmon/w83793.c | |||
| @@ -41,7 +41,6 @@ static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, 0x2f, | |||
| 41 | I2C_CLIENT_END }; | 41 | I2C_CLIENT_END }; |
| 42 | 42 | ||
| 43 | /* Insmod parameters */ | 43 | /* Insmod parameters */ |
| 44 | I2C_CLIENT_INSMOD_1(w83793); | ||
| 45 | 44 | ||
| 46 | static unsigned short force_subclients[4]; | 45 | static unsigned short force_subclients[4]; |
| 47 | module_param_array(force_subclients, short, NULL, 0); | 46 | module_param_array(force_subclients, short, NULL, 0); |
| @@ -238,7 +237,7 @@ static void w83793_update_nonvolatile(struct device *dev); | |||
| 238 | static struct w83793_data *w83793_update_device(struct device *dev); | 237 | static struct w83793_data *w83793_update_device(struct device *dev); |
| 239 | 238 | ||
| 240 | static const struct i2c_device_id w83793_id[] = { | 239 | static const struct i2c_device_id w83793_id[] = { |
| 241 | { "w83793", w83793 }, | 240 | { "w83793", 0 }, |
| 242 | { } | 241 | { } |
| 243 | }; | 242 | }; |
| 244 | MODULE_DEVICE_TABLE(i2c, w83793_id); | 243 | MODULE_DEVICE_TABLE(i2c, w83793_id); |
diff --git a/drivers/hwmon/w83l785ts.c b/drivers/hwmon/w83l785ts.c index 81c59937cf0d..20781def65ed 100644 --- a/drivers/hwmon/w83l785ts.c +++ b/drivers/hwmon/w83l785ts.c | |||
| @@ -52,12 +52,6 @@ | |||
| 52 | static const unsigned short normal_i2c[] = { 0x2e, I2C_CLIENT_END }; | 52 | static const unsigned short normal_i2c[] = { 0x2e, I2C_CLIENT_END }; |
| 53 | 53 | ||
| 54 | /* | 54 | /* |
| 55 | * Insmod parameters | ||
| 56 | */ | ||
| 57 | |||
| 58 | I2C_CLIENT_INSMOD_1(w83l785ts); | ||
| 59 | |||
| 60 | /* | ||
| 61 | * The W83L785TS-S registers | 55 | * The W83L785TS-S registers |
| 62 | * Manufacturer ID is 0x5CA3 for Winbond. | 56 | * Manufacturer ID is 0x5CA3 for Winbond. |
| 63 | */ | 57 | */ |
| @@ -94,7 +88,7 @@ static struct w83l785ts_data *w83l785ts_update_device(struct device *dev); | |||
| 94 | */ | 88 | */ |
| 95 | 89 | ||
| 96 | static const struct i2c_device_id w83l785ts_id[] = { | 90 | static const struct i2c_device_id w83l785ts_id[] = { |
| 97 | { "w83l785ts", w83l785ts }, | 91 | { "w83l785ts", 0 }, |
| 98 | { } | 92 | { } |
| 99 | }; | 93 | }; |
| 100 | MODULE_DEVICE_TABLE(i2c, w83l785ts_id); | 94 | MODULE_DEVICE_TABLE(i2c, w83l785ts_id); |
diff --git a/drivers/hwmon/w83l786ng.c b/drivers/hwmon/w83l786ng.c index a427347ae82b..0254e181893d 100644 --- a/drivers/hwmon/w83l786ng.c +++ b/drivers/hwmon/w83l786ng.c | |||
| @@ -38,7 +38,6 @@ | |||
| 38 | static const unsigned short normal_i2c[] = { 0x2e, 0x2f, I2C_CLIENT_END }; | 38 | static const unsigned short normal_i2c[] = { 0x2e, 0x2f, I2C_CLIENT_END }; |
| 39 | 39 | ||
| 40 | /* Insmod parameters */ | 40 | /* Insmod parameters */ |
| 41 | I2C_CLIENT_INSMOD_1(w83l786ng); | ||
| 42 | 41 | ||
| 43 | static int reset; | 42 | static int reset; |
| 44 | module_param(reset, bool, 0); | 43 | module_param(reset, bool, 0); |
| @@ -154,7 +153,7 @@ static void w83l786ng_init_client(struct i2c_client *client); | |||
| 154 | static struct w83l786ng_data *w83l786ng_update_device(struct device *dev); | 153 | static struct w83l786ng_data *w83l786ng_update_device(struct device *dev); |
| 155 | 154 | ||
| 156 | static const struct i2c_device_id w83l786ng_id[] = { | 155 | static const struct i2c_device_id w83l786ng_id[] = { |
| 157 | { "w83l786ng", w83l786ng }, | 156 | { "w83l786ng", 0 }, |
| 158 | { } | 157 | { } |
| 159 | }; | 158 | }; |
| 160 | MODULE_DEVICE_TABLE(i2c, w83l786ng_id); | 159 | MODULE_DEVICE_TABLE(i2c, w83l786ng_id); |
diff --git a/drivers/misc/eeprom/eeprom.c b/drivers/misc/eeprom/eeprom.c index 3dc5e3db2c12..f939ebc2507c 100644 --- a/drivers/misc/eeprom/eeprom.c +++ b/drivers/misc/eeprom/eeprom.c | |||
| @@ -32,9 +32,6 @@ | |||
| 32 | static const unsigned short normal_i2c[] = { 0x50, 0x51, 0x52, 0x53, 0x54, | 32 | static const unsigned short normal_i2c[] = { 0x50, 0x51, 0x52, 0x53, 0x54, |
| 33 | 0x55, 0x56, 0x57, I2C_CLIENT_END }; | 33 | 0x55, 0x56, 0x57, I2C_CLIENT_END }; |
| 34 | 34 | ||
| 35 | /* Insmod parameters */ | ||
| 36 | I2C_CLIENT_INSMOD_1(eeprom); | ||
| 37 | |||
| 38 | 35 | ||
| 39 | /* Size of EEPROM in bytes */ | 36 | /* Size of EEPROM in bytes */ |
| 40 | #define EEPROM_SIZE 256 | 37 | #define EEPROM_SIZE 256 |
diff --git a/drivers/misc/ics932s401.c b/drivers/misc/ics932s401.c index d8a84718d687..395a4ea64e9c 100644 --- a/drivers/misc/ics932s401.c +++ b/drivers/misc/ics932s401.c | |||
| @@ -30,9 +30,6 @@ | |||
| 30 | /* Addresses to scan */ | 30 | /* Addresses to scan */ |
| 31 | static const unsigned short normal_i2c[] = { 0x69, I2C_CLIENT_END }; | 31 | static const unsigned short normal_i2c[] = { 0x69, I2C_CLIENT_END }; |
| 32 | 32 | ||
| 33 | /* Insmod parameters */ | ||
| 34 | I2C_CLIENT_INSMOD_1(ics932s401); | ||
| 35 | |||
| 36 | /* ICS932S401 registers */ | 33 | /* ICS932S401 registers */ |
| 37 | #define ICS932S401_REG_CFG2 0x01 | 34 | #define ICS932S401_REG_CFG2 0x01 |
| 38 | #define ICS932S401_CFG1_SPREAD 0x01 | 35 | #define ICS932S401_CFG1_SPREAD 0x01 |
| @@ -111,7 +108,7 @@ static int ics932s401_detect(struct i2c_client *client, | |||
| 111 | static int ics932s401_remove(struct i2c_client *client); | 108 | static int ics932s401_remove(struct i2c_client *client); |
| 112 | 109 | ||
| 113 | static const struct i2c_device_id ics932s401_id[] = { | 110 | static const struct i2c_device_id ics932s401_id[] = { |
| 114 | { "ics932s401", ics932s401 }, | 111 | { "ics932s401", 0 }, |
| 115 | { } | 112 | { } |
| 116 | }; | 113 | }; |
| 117 | MODULE_DEVICE_TABLE(i2c, ics932s401_id); | 114 | MODULE_DEVICE_TABLE(i2c, ics932s401_id); |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index fb9df1416ad5..7178b27146ed 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
| @@ -604,11 +604,6 @@ union i2c_smbus_data { | |||
| 604 | 604 | ||
| 605 | /* These are the ones you want to use in your own drivers. Pick the one | 605 | /* These are the ones you want to use in your own drivers. Pick the one |
| 606 | which matches the number of devices the driver differenciates between. */ | 606 | which matches the number of devices the driver differenciates between. */ |
| 607 | #define I2C_CLIENT_INSMOD | ||
| 608 | |||
| 609 | #define I2C_CLIENT_INSMOD_1(chip1) \ | ||
| 610 | enum chips { any_chip, chip1 } | ||
| 611 | |||
| 612 | #define I2C_CLIENT_INSMOD_2(chip1, chip2) \ | 607 | #define I2C_CLIENT_INSMOD_2(chip1, chip2) \ |
| 613 | enum chips { any_chip, chip1, chip2 } | 608 | enum chips { any_chip, chip1, chip2 } |
| 614 | 609 | ||
