diff options
| author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-12-06 18:33:15 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-06 01:16:25 -0500 |
| commit | 2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33 (patch) | |
| tree | 04c095d45dfa892b7710e338724a1ac4f1da7cba | |
| parent | de59cf9ed44f64991e52a9de6094729537f0420c (diff) | |
[PATCH] I2C: Remove .owner setting from i2c_driver as it's no longer needed
Now that i2c_add_driver() doesn't need the module owner to be set by
hand, we can delete it from the drivers. This patch catches all of the
drivers that I found in the current tree (if a driver sets the .owner by
hand, it's not a problem, just not needed.)
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Jean Delvare <khali@linux-fr.org>
95 files changed, 0 insertions, 98 deletions
diff --git a/arch/arm/mach-pxa/akita-ioexp.c b/arch/arm/mach-pxa/akita-ioexp.c index 6f7b96551ada..1b398742ab56 100644 --- a/arch/arm/mach-pxa/akita-ioexp.c +++ b/arch/arm/mach-pxa/akita-ioexp.c | |||
| @@ -125,7 +125,6 @@ static int max7310_detach_client(struct i2c_client *client) | |||
| 125 | 125 | ||
| 126 | static struct i2c_driver max7310_i2c_driver = { | 126 | static struct i2c_driver max7310_i2c_driver = { |
| 127 | .driver = { | 127 | .driver = { |
| 128 | .owner = THIS_MODULE, | ||
| 129 | .name = "akita-max7310", | 128 | .name = "akita-max7310", |
| 130 | }, | 129 | }, |
| 131 | .id = I2C_DRIVERID_AKITAIOEXP, | 130 | .id = I2C_DRIVERID_AKITAIOEXP, |
diff --git a/drivers/acorn/char/pcf8583.c b/drivers/acorn/char/pcf8583.c index 5fc5940e637c..9b49f316ae92 100644 --- a/drivers/acorn/char/pcf8583.c +++ b/drivers/acorn/char/pcf8583.c | |||
| @@ -258,7 +258,6 @@ pcf8583_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
| 258 | 258 | ||
| 259 | static struct i2c_driver pcf8583_driver = { | 259 | static struct i2c_driver pcf8583_driver = { |
| 260 | .driver = { | 260 | .driver = { |
| 261 | .owner = THIS_MODULE, | ||
| 262 | .name = "PCF8583", | 261 | .name = "PCF8583", |
| 263 | }, | 262 | }, |
| 264 | .id = I2C_DRIVERID_PCF8583, | 263 | .id = I2C_DRIVERID_PCF8583, |
diff --git a/drivers/hwmon/adm1021.c b/drivers/hwmon/adm1021.c index 679cb92ccaf4..665612729cb9 100644 --- a/drivers/hwmon/adm1021.c +++ b/drivers/hwmon/adm1021.c | |||
| @@ -127,7 +127,6 @@ static int read_only; | |||
| 127 | /* This is the driver that will be inserted */ | 127 | /* This is the driver that will be inserted */ |
| 128 | static struct i2c_driver adm1021_driver = { | 128 | static struct i2c_driver adm1021_driver = { |
| 129 | .driver = { | 129 | .driver = { |
| 130 | .owner = THIS_MODULE, | ||
| 131 | .name = "adm1021", | 130 | .name = "adm1021", |
| 132 | }, | 131 | }, |
| 133 | .id = I2C_DRIVERID_ADM1021, | 132 | .id = I2C_DRIVERID_ADM1021, |
diff --git a/drivers/hwmon/adm1025.c b/drivers/hwmon/adm1025.c index 3c70622c8cb1..9331c56d2ba6 100644 --- a/drivers/hwmon/adm1025.c +++ b/drivers/hwmon/adm1025.c | |||
| @@ -119,7 +119,6 @@ static struct adm1025_data *adm1025_update_device(struct device *dev); | |||
| 119 | 119 | ||
| 120 | static struct i2c_driver adm1025_driver = { | 120 | static struct i2c_driver adm1025_driver = { |
| 121 | .driver = { | 121 | .driver = { |
| 122 | .owner = THIS_MODULE, | ||
| 123 | .name = "adm1025", | 122 | .name = "adm1025", |
| 124 | }, | 123 | }, |
| 125 | .id = I2C_DRIVERID_ADM1025, | 124 | .id = I2C_DRIVERID_ADM1025, |
diff --git a/drivers/hwmon/adm1026.c b/drivers/hwmon/adm1026.c index 92fac344d05b..fefe6e74fd02 100644 --- a/drivers/hwmon/adm1026.c +++ b/drivers/hwmon/adm1026.c | |||
| @@ -309,7 +309,6 @@ static void adm1026_init_client(struct i2c_client *client); | |||
| 309 | 309 | ||
| 310 | static struct i2c_driver adm1026_driver = { | 310 | static struct i2c_driver adm1026_driver = { |
| 311 | .driver = { | 311 | .driver = { |
| 312 | .owner = THIS_MODULE, | ||
| 313 | .name = "adm1026", | 312 | .name = "adm1026", |
| 314 | }, | 313 | }, |
| 315 | .attach_adapter = adm1026_attach_adapter, | 314 | .attach_adapter = adm1026_attach_adapter, |
diff --git a/drivers/hwmon/adm1031.c b/drivers/hwmon/adm1031.c index e42d75e28804..d06397966081 100644 --- a/drivers/hwmon/adm1031.c +++ b/drivers/hwmon/adm1031.c | |||
| @@ -106,7 +106,6 @@ static struct adm1031_data *adm1031_update_device(struct device *dev); | |||
| 106 | /* This is the driver that will be inserted */ | 106 | /* This is the driver that will be inserted */ |
| 107 | static struct i2c_driver adm1031_driver = { | 107 | static struct i2c_driver adm1031_driver = { |
| 108 | .driver = { | 108 | .driver = { |
| 109 | .owner = THIS_MODULE, | ||
| 110 | .name = "adm1031", | 109 | .name = "adm1031", |
| 111 | }, | 110 | }, |
| 112 | .attach_adapter = adm1031_attach_adapter, | 111 | .attach_adapter = adm1031_attach_adapter, |
diff --git a/drivers/hwmon/adm9240.c b/drivers/hwmon/adm9240.c index e60309e9726c..5ddc22fea4a3 100644 --- a/drivers/hwmon/adm9240.c +++ b/drivers/hwmon/adm9240.c | |||
| @@ -138,7 +138,6 @@ static struct adm9240_data *adm9240_update_device(struct device *dev); | |||
| 138 | /* driver data */ | 138 | /* driver data */ |
| 139 | static struct i2c_driver adm9240_driver = { | 139 | static struct i2c_driver adm9240_driver = { |
| 140 | .driver = { | 140 | .driver = { |
| 141 | .owner = THIS_MODULE, | ||
| 142 | .name = "adm9240", | 141 | .name = "adm9240", |
| 143 | }, | 142 | }, |
| 144 | .id = I2C_DRIVERID_ADM9240, | 143 | .id = I2C_DRIVERID_ADM9240, |
diff --git a/drivers/hwmon/asb100.c b/drivers/hwmon/asb100.c index 3068de0dc728..ae9de63cf2e0 100644 --- a/drivers/hwmon/asb100.c +++ b/drivers/hwmon/asb100.c | |||
| @@ -218,7 +218,6 @@ static void asb100_init_client(struct i2c_client *client); | |||
| 218 | 218 | ||
| 219 | static struct i2c_driver asb100_driver = { | 219 | static struct i2c_driver asb100_driver = { |
| 220 | .driver = { | 220 | .driver = { |
| 221 | .owner = THIS_MODULE, | ||
| 222 | .name = "asb100", | 221 | .name = "asb100", |
| 223 | }, | 222 | }, |
| 224 | .id = I2C_DRIVERID_ASB100, | 223 | .id = I2C_DRIVERID_ASB100, |
diff --git a/drivers/hwmon/atxp1.c b/drivers/hwmon/atxp1.c index ed152d939643..b0c490073c8e 100644 --- a/drivers/hwmon/atxp1.c +++ b/drivers/hwmon/atxp1.c | |||
| @@ -51,7 +51,6 @@ static int atxp1_detect(struct i2c_adapter *adapter, int address, int kind); | |||
| 51 | 51 | ||
| 52 | static struct i2c_driver atxp1_driver = { | 52 | static struct i2c_driver atxp1_driver = { |
| 53 | .driver = { | 53 | .driver = { |
| 54 | .owner = THIS_MODULE, | ||
| 55 | .name = "atxp1", | 54 | .name = "atxp1", |
| 56 | }, | 55 | }, |
| 57 | .attach_adapter = atxp1_attach_adapter, | 56 | .attach_adapter = atxp1_attach_adapter, |
diff --git a/drivers/hwmon/ds1621.c b/drivers/hwmon/ds1621.c index 860094005c14..203f9c7abb20 100644 --- a/drivers/hwmon/ds1621.c +++ b/drivers/hwmon/ds1621.c | |||
| @@ -90,7 +90,6 @@ static struct ds1621_data *ds1621_update_client(struct device *dev); | |||
| 90 | /* This is the driver that will be inserted */ | 90 | /* This is the driver that will be inserted */ |
| 91 | static struct i2c_driver ds1621_driver = { | 91 | static struct i2c_driver ds1621_driver = { |
| 92 | .driver = { | 92 | .driver = { |
| 93 | .owner = THIS_MODULE, | ||
| 94 | .name = "ds1621", | 93 | .name = "ds1621", |
| 95 | }, | 94 | }, |
| 96 | .id = I2C_DRIVERID_DS1621, | 95 | .id = I2C_DRIVERID_DS1621, |
diff --git a/drivers/hwmon/fscher.c b/drivers/hwmon/fscher.c index 982fff42ce94..25409181d1eb 100644 --- a/drivers/hwmon/fscher.c +++ b/drivers/hwmon/fscher.c | |||
| @@ -119,7 +119,6 @@ static int fscher_write_value(struct i2c_client *client, u8 reg, u8 value); | |||
| 119 | 119 | ||
| 120 | static struct i2c_driver fscher_driver = { | 120 | static struct i2c_driver fscher_driver = { |
| 121 | .driver = { | 121 | .driver = { |
| 122 | .owner = THIS_MODULE, | ||
| 123 | .name = "fscher", | 122 | .name = "fscher", |
| 124 | }, | 123 | }, |
| 125 | .id = I2C_DRIVERID_FSCHER, | 124 | .id = I2C_DRIVERID_FSCHER, |
diff --git a/drivers/hwmon/fscpos.c b/drivers/hwmon/fscpos.c index 971146b92cc0..6d0146b57020 100644 --- a/drivers/hwmon/fscpos.c +++ b/drivers/hwmon/fscpos.c | |||
| @@ -101,7 +101,6 @@ static void reset_fan_alarm(struct i2c_client *client, int nr); | |||
| 101 | */ | 101 | */ |
| 102 | static struct i2c_driver fscpos_driver = { | 102 | static struct i2c_driver fscpos_driver = { |
| 103 | .driver = { | 103 | .driver = { |
| 104 | .owner = THIS_MODULE, | ||
| 105 | .name = "fscpos", | 104 | .name = "fscpos", |
| 106 | }, | 105 | }, |
| 107 | .id = I2C_DRIVERID_FSCPOS, | 106 | .id = I2C_DRIVERID_FSCPOS, |
diff --git a/drivers/hwmon/gl518sm.c b/drivers/hwmon/gl518sm.c index 9c5ca1f467a9..9e685e3a3bc9 100644 --- a/drivers/hwmon/gl518sm.c +++ b/drivers/hwmon/gl518sm.c | |||
| @@ -152,7 +152,6 @@ static struct gl518_data *gl518_update_device(struct device *dev); | |||
| 152 | /* This is the driver that will be inserted */ | 152 | /* This is the driver that will be inserted */ |
| 153 | static struct i2c_driver gl518_driver = { | 153 | static struct i2c_driver gl518_driver = { |
| 154 | .driver = { | 154 | .driver = { |
| 155 | .owner = THIS_MODULE, | ||
| 156 | .name = "gl518sm", | 155 | .name = "gl518sm", |
| 157 | }, | 156 | }, |
| 158 | .id = I2C_DRIVERID_GL518, | 157 | .id = I2C_DRIVERID_GL518, |
diff --git a/drivers/hwmon/gl520sm.c b/drivers/hwmon/gl520sm.c index a9a724a6f38a..baee60e44b52 100644 --- a/drivers/hwmon/gl520sm.c +++ b/drivers/hwmon/gl520sm.c | |||
| @@ -110,7 +110,6 @@ static struct gl520_data *gl520_update_device(struct device *dev); | |||
| 110 | /* Driver data */ | 110 | /* Driver data */ |
| 111 | static struct i2c_driver gl520_driver = { | 111 | static struct i2c_driver gl520_driver = { |
| 112 | .driver = { | 112 | .driver = { |
| 113 | .owner = THIS_MODULE, | ||
| 114 | .name = "gl520sm", | 113 | .name = "gl520sm", |
| 115 | }, | 114 | }, |
| 116 | .id = I2C_DRIVERID_GL520, | 115 | .id = I2C_DRIVERID_GL520, |
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index 24d520bcc0b6..29b74a880eae 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
| @@ -235,7 +235,6 @@ static void it87_init_client(struct i2c_client *client, struct it87_data *data); | |||
| 235 | 235 | ||
| 236 | static struct i2c_driver it87_driver = { | 236 | static struct i2c_driver it87_driver = { |
| 237 | .driver = { | 237 | .driver = { |
| 238 | .owner = THIS_MODULE, | ||
| 239 | .name = "it87", | 238 | .name = "it87", |
| 240 | }, | 239 | }, |
| 241 | .id = I2C_DRIVERID_IT87, | 240 | .id = I2C_DRIVERID_IT87, |
| @@ -245,7 +244,6 @@ static struct i2c_driver it87_driver = { | |||
| 245 | 244 | ||
| 246 | static struct i2c_driver it87_isa_driver = { | 245 | static struct i2c_driver it87_isa_driver = { |
| 247 | .driver = { | 246 | .driver = { |
| 248 | .owner = THIS_MODULE, | ||
| 249 | .name = "it87-isa", | 247 | .name = "it87-isa", |
| 250 | }, | 248 | }, |
| 251 | .attach_adapter = it87_isa_attach_adapter, | 249 | .attach_adapter = it87_isa_attach_adapter, |
diff --git a/drivers/hwmon/lm63.c b/drivers/hwmon/lm63.c index 35baae742cff..6b1aa7ef552e 100644 --- a/drivers/hwmon/lm63.c +++ b/drivers/hwmon/lm63.c | |||
| @@ -140,7 +140,6 @@ static void lm63_init_client(struct i2c_client *client); | |||
| 140 | 140 | ||
| 141 | static struct i2c_driver lm63_driver = { | 141 | static struct i2c_driver lm63_driver = { |
| 142 | .driver = { | 142 | .driver = { |
| 143 | .owner = THIS_MODULE, | ||
| 144 | .name = "lm63", | 143 | .name = "lm63", |
| 145 | }, | 144 | }, |
| 146 | .attach_adapter = lm63_attach_adapter, | 145 | .attach_adapter = lm63_attach_adapter, |
diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c index db35fbf4d250..74ca2c8c61c3 100644 --- a/drivers/hwmon/lm75.c +++ b/drivers/hwmon/lm75.c | |||
| @@ -67,7 +67,6 @@ static struct lm75_data *lm75_update_device(struct device *dev); | |||
| 67 | /* This is the driver that will be inserted */ | 67 | /* This is the driver that will be inserted */ |
| 68 | static struct i2c_driver lm75_driver = { | 68 | static struct i2c_driver lm75_driver = { |
| 69 | .driver = { | 69 | .driver = { |
| 70 | .owner = THIS_MODULE, | ||
| 71 | .name = "lm75", | 70 | .name = "lm75", |
| 72 | }, | 71 | }, |
| 73 | .id = I2C_DRIVERID_LM75, | 72 | .id = I2C_DRIVERID_LM75, |
diff --git a/drivers/hwmon/lm77.c b/drivers/hwmon/lm77.c index 177072056d7d..a2f420d01fb7 100644 --- a/drivers/hwmon/lm77.c +++ b/drivers/hwmon/lm77.c | |||
| @@ -75,7 +75,6 @@ static struct lm77_data *lm77_update_device(struct device *dev); | |||
| 75 | /* This is the driver that will be inserted */ | 75 | /* This is the driver that will be inserted */ |
| 76 | static struct i2c_driver lm77_driver = { | 76 | static struct i2c_driver lm77_driver = { |
| 77 | .driver = { | 77 | .driver = { |
| 78 | .owner = THIS_MODULE, | ||
| 79 | .name = "lm77", | 78 | .name = "lm77", |
| 80 | }, | 79 | }, |
| 81 | .attach_adapter = lm77_attach_adapter, | 80 | .attach_adapter = lm77_attach_adapter, |
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c index 3af5b06995e0..e404001e20da 100644 --- a/drivers/hwmon/lm78.c +++ b/drivers/hwmon/lm78.c | |||
| @@ -165,7 +165,6 @@ static void lm78_init_client(struct i2c_client *client); | |||
| 165 | 165 | ||
| 166 | static struct i2c_driver lm78_driver = { | 166 | static struct i2c_driver lm78_driver = { |
| 167 | .driver = { | 167 | .driver = { |
| 168 | .owner = THIS_MODULE, | ||
| 169 | .name = "lm78", | 168 | .name = "lm78", |
| 170 | }, | 169 | }, |
| 171 | .id = I2C_DRIVERID_LM78, | 170 | .id = I2C_DRIVERID_LM78, |
| @@ -175,7 +174,6 @@ static struct i2c_driver lm78_driver = { | |||
| 175 | 174 | ||
| 176 | static struct i2c_driver lm78_isa_driver = { | 175 | static struct i2c_driver lm78_isa_driver = { |
| 177 | .driver = { | 176 | .driver = { |
| 178 | .owner = THIS_MODULE, | ||
| 179 | .name = "lm78-isa", | 177 | .name = "lm78-isa", |
| 180 | }, | 178 | }, |
| 181 | .attach_adapter = lm78_isa_attach_adapter, | 179 | .attach_adapter = lm78_isa_attach_adapter, |
diff --git a/drivers/hwmon/lm80.c b/drivers/hwmon/lm80.c index 1dc118f411a7..c9a7cdea7bd7 100644 --- a/drivers/hwmon/lm80.c +++ b/drivers/hwmon/lm80.c | |||
| @@ -144,7 +144,6 @@ static int lm80_write_value(struct i2c_client *client, u8 reg, u8 value); | |||
| 144 | 144 | ||
| 145 | static struct i2c_driver lm80_driver = { | 145 | static struct i2c_driver lm80_driver = { |
| 146 | .driver = { | 146 | .driver = { |
| 147 | .owner = THIS_MODULE, | ||
| 148 | .name = "lm80", | 147 | .name = "lm80", |
| 149 | }, | 148 | }, |
| 150 | .id = I2C_DRIVERID_LM80, | 149 | .id = I2C_DRIVERID_LM80, |
diff --git a/drivers/hwmon/lm83.c b/drivers/hwmon/lm83.c index 1c1744f699fb..26dfa9e216c2 100644 --- a/drivers/hwmon/lm83.c +++ b/drivers/hwmon/lm83.c | |||
| @@ -125,7 +125,6 @@ static struct lm83_data *lm83_update_device(struct device *dev); | |||
| 125 | 125 | ||
| 126 | static struct i2c_driver lm83_driver = { | 126 | static struct i2c_driver lm83_driver = { |
| 127 | .driver = { | 127 | .driver = { |
| 128 | .owner = THIS_MODULE, | ||
| 129 | .name = "lm83", | 128 | .name = "lm83", |
| 130 | }, | 129 | }, |
| 131 | .id = I2C_DRIVERID_LM83, | 130 | .id = I2C_DRIVERID_LM83, |
diff --git a/drivers/hwmon/lm85.c b/drivers/hwmon/lm85.c index b537c18c7a12..7389a0127547 100644 --- a/drivers/hwmon/lm85.c +++ b/drivers/hwmon/lm85.c | |||
| @@ -381,7 +381,6 @@ static void lm85_init_client(struct i2c_client *client); | |||
| 381 | 381 | ||
| 382 | static struct i2c_driver lm85_driver = { | 382 | static struct i2c_driver lm85_driver = { |
| 383 | .driver = { | 383 | .driver = { |
| 384 | .owner = THIS_MODULE, | ||
| 385 | .name = "lm85", | 384 | .name = "lm85", |
| 386 | }, | 385 | }, |
| 387 | .id = I2C_DRIVERID_LM85, | 386 | .id = I2C_DRIVERID_LM85, |
diff --git a/drivers/hwmon/lm87.c b/drivers/hwmon/lm87.c index 3152c006ce06..6ba34c302d8d 100644 --- a/drivers/hwmon/lm87.c +++ b/drivers/hwmon/lm87.c | |||
| @@ -162,7 +162,6 @@ static struct lm87_data *lm87_update_device(struct device *dev); | |||
| 162 | 162 | ||
| 163 | static struct i2c_driver lm87_driver = { | 163 | static struct i2c_driver lm87_driver = { |
| 164 | .driver = { | 164 | .driver = { |
| 165 | .owner = THIS_MODULE, | ||
| 166 | .name = "lm87", | 165 | .name = "lm87", |
| 167 | }, | 166 | }, |
| 168 | .id = I2C_DRIVERID_LM87, | 167 | .id = I2C_DRIVERID_LM87, |
diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c index ff7ba1e1bcc7..5679464447cc 100644 --- a/drivers/hwmon/lm90.c +++ b/drivers/hwmon/lm90.c | |||
| @@ -187,7 +187,6 @@ static struct lm90_data *lm90_update_device(struct device *dev); | |||
| 187 | 187 | ||
| 188 | static struct i2c_driver lm90_driver = { | 188 | static struct i2c_driver lm90_driver = { |
| 189 | .driver = { | 189 | .driver = { |
| 190 | .owner = THIS_MODULE, | ||
| 191 | .name = "lm90", | 190 | .name = "lm90", |
| 192 | }, | 191 | }, |
| 193 | .id = I2C_DRIVERID_LM90, | 192 | .id = I2C_DRIVERID_LM90, |
diff --git a/drivers/hwmon/lm92.c b/drivers/hwmon/lm92.c index b4e4a8409d01..b0c4cb730a7e 100644 --- a/drivers/hwmon/lm92.c +++ b/drivers/hwmon/lm92.c | |||
| @@ -411,7 +411,6 @@ static int lm92_detach_client(struct i2c_client *client) | |||
| 411 | 411 | ||
| 412 | static struct i2c_driver lm92_driver = { | 412 | static struct i2c_driver lm92_driver = { |
| 413 | .driver = { | 413 | .driver = { |
| 414 | .owner = THIS_MODULE, | ||
| 415 | .name = "lm92", | 414 | .name = "lm92", |
| 416 | }, | 415 | }, |
| 417 | .id = I2C_DRIVERID_LM92, | 416 | .id = I2C_DRIVERID_LM92, |
diff --git a/drivers/hwmon/max1619.c b/drivers/hwmon/max1619.c index 1a50b13a62ae..3abe330b22ce 100644 --- a/drivers/hwmon/max1619.c +++ b/drivers/hwmon/max1619.c | |||
| @@ -91,7 +91,6 @@ static struct max1619_data *max1619_update_device(struct device *dev); | |||
| 91 | 91 | ||
| 92 | static struct i2c_driver max1619_driver = { | 92 | static struct i2c_driver max1619_driver = { |
| 93 | .driver = { | 93 | .driver = { |
| 94 | .owner = THIS_MODULE, | ||
| 95 | .name = "max1619", | 94 | .name = "max1619", |
| 96 | }, | 95 | }, |
| 97 | .attach_adapter = max1619_attach_adapter, | 96 | .attach_adapter = max1619_attach_adapter, |
diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index 5469489c758a..f161e88e3bb6 100644 --- a/drivers/hwmon/pc87360.c +++ b/drivers/hwmon/pc87360.c | |||
| @@ -237,7 +237,6 @@ static struct pc87360_data *pc87360_update_device(struct device *dev); | |||
| 237 | 237 | ||
| 238 | static struct i2c_driver pc87360_driver = { | 238 | static struct i2c_driver pc87360_driver = { |
| 239 | .driver = { | 239 | .driver = { |
| 240 | .owner = THIS_MODULE, | ||
| 241 | .name = "pc87360", | 240 | .name = "pc87360", |
| 242 | }, | 241 | }, |
| 243 | .attach_adapter = pc87360_detect, | 242 | .attach_adapter = pc87360_detect, |
diff --git a/drivers/hwmon/sis5595.c b/drivers/hwmon/sis5595.c index 9f44b93f3261..8be5189d9bd9 100644 --- a/drivers/hwmon/sis5595.c +++ b/drivers/hwmon/sis5595.c | |||
| @@ -199,7 +199,6 @@ static void sis5595_init_client(struct i2c_client *client); | |||
| 199 | 199 | ||
| 200 | static struct i2c_driver sis5595_driver = { | 200 | static struct i2c_driver sis5595_driver = { |
| 201 | .driver = { | 201 | .driver = { |
| 202 | .owner = THIS_MODULE, | ||
| 203 | .name = "sis5595", | 202 | .name = "sis5595", |
| 204 | }, | 203 | }, |
| 205 | .attach_adapter = sis5595_detect, | 204 | .attach_adapter = sis5595_detect, |
diff --git a/drivers/hwmon/smsc47b397.c b/drivers/hwmon/smsc47b397.c index 02e5d55a2e2d..8663bbbe97f5 100644 --- a/drivers/hwmon/smsc47b397.c +++ b/drivers/hwmon/smsc47b397.c | |||
| @@ -227,7 +227,6 @@ static int smsc47b397_detect(struct i2c_adapter *adapter); | |||
| 227 | 227 | ||
| 228 | static struct i2c_driver smsc47b397_driver = { | 228 | static struct i2c_driver smsc47b397_driver = { |
| 229 | .driver = { | 229 | .driver = { |
| 230 | .owner = THIS_MODULE, | ||
| 231 | .name = "smsc47b397", | 230 | .name = "smsc47b397", |
| 232 | }, | 231 | }, |
| 233 | .attach_adapter = smsc47b397_detect, | 232 | .attach_adapter = smsc47b397_detect, |
diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c index b3051ad7b926..d1e3ec0fe4df 100644 --- a/drivers/hwmon/smsc47m1.c +++ b/drivers/hwmon/smsc47m1.c | |||
| @@ -127,7 +127,6 @@ static struct smsc47m1_data *smsc47m1_update_device(struct device *dev, | |||
| 127 | 127 | ||
| 128 | static struct i2c_driver smsc47m1_driver = { | 128 | static struct i2c_driver smsc47m1_driver = { |
| 129 | .driver = { | 129 | .driver = { |
| 130 | .owner = THIS_MODULE, | ||
| 131 | .name = "smsc47m1", | 130 | .name = "smsc47m1", |
| 132 | }, | 131 | }, |
| 133 | .attach_adapter = smsc47m1_detect, | 132 | .attach_adapter = smsc47m1_detect, |
diff --git a/drivers/hwmon/via686a.c b/drivers/hwmon/via686a.c index db75fbccfb62..cb01848729b5 100644 --- a/drivers/hwmon/via686a.c +++ b/drivers/hwmon/via686a.c | |||
| @@ -573,7 +573,6 @@ static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); | |||
| 573 | smbus_driver and isa_driver, and clients could be of either kind */ | 573 | smbus_driver and isa_driver, and clients could be of either kind */ |
| 574 | static struct i2c_driver via686a_driver = { | 574 | static struct i2c_driver via686a_driver = { |
| 575 | .driver = { | 575 | .driver = { |
| 576 | .owner = THIS_MODULE, | ||
| 577 | .name = "via686a", | 576 | .name = "via686a", |
| 578 | }, | 577 | }, |
| 579 | .attach_adapter = via686a_detect, | 578 | .attach_adapter = via686a_detect, |
diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c index c2eb54b52073..d00a726d0239 100644 --- a/drivers/hwmon/vt8231.c +++ b/drivers/hwmon/vt8231.c | |||
| @@ -586,7 +586,6 @@ static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); | |||
| 586 | 586 | ||
| 587 | static struct i2c_driver vt8231_driver = { | 587 | static struct i2c_driver vt8231_driver = { |
| 588 | .driver = { | 588 | .driver = { |
| 589 | .owner = THIS_MODULE, | ||
| 590 | .name = "vt8231", | 589 | .name = "vt8231", |
| 591 | }, | 590 | }, |
| 592 | .attach_adapter = vt8231_detect, | 591 | .attach_adapter = vt8231_detect, |
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c index 94538fb3ef1f..12d79f5e4900 100644 --- a/drivers/hwmon/w83627ehf.c +++ b/drivers/hwmon/w83627ehf.c | |||
| @@ -786,7 +786,6 @@ static int w83627ehf_detach_client(struct i2c_client *client) | |||
| 786 | 786 | ||
| 787 | static struct i2c_driver w83627ehf_driver = { | 787 | static struct i2c_driver w83627ehf_driver = { |
| 788 | .driver = { | 788 | .driver = { |
| 789 | .owner = THIS_MODULE, | ||
| 790 | .name = "w83627ehf", | 789 | .name = "w83627ehf", |
| 791 | }, | 790 | }, |
| 792 | .attach_adapter = w83627ehf_detect, | 791 | .attach_adapter = w83627ehf_detect, |
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c index 2ffb84f9c6b7..7ea441d4da63 100644 --- a/drivers/hwmon/w83627hf.c +++ b/drivers/hwmon/w83627hf.c | |||
| @@ -333,7 +333,6 @@ static void w83627hf_init_client(struct i2c_client *client); | |||
| 333 | 333 | ||
| 334 | static struct i2c_driver w83627hf_driver = { | 334 | static struct i2c_driver w83627hf_driver = { |
| 335 | .driver = { | 335 | .driver = { |
| 336 | .owner = THIS_MODULE, | ||
| 337 | .name = "w83627hf", | 336 | .name = "w83627hf", |
| 338 | }, | 337 | }, |
| 339 | .attach_adapter = w83627hf_detect, | 338 | .attach_adapter = w83627hf_detect, |
diff --git a/drivers/hwmon/w83781d.c b/drivers/hwmon/w83781d.c index fd1a59c53630..557114872f3c 100644 --- a/drivers/hwmon/w83781d.c +++ b/drivers/hwmon/w83781d.c | |||
| @@ -270,7 +270,6 @@ static void w83781d_init_client(struct i2c_client *client); | |||
| 270 | 270 | ||
| 271 | static struct i2c_driver w83781d_driver = { | 271 | static struct i2c_driver w83781d_driver = { |
| 272 | .driver = { | 272 | .driver = { |
| 273 | .owner = THIS_MODULE, | ||
| 274 | .name = "w83781d", | 273 | .name = "w83781d", |
| 275 | }, | 274 | }, |
| 276 | .id = I2C_DRIVERID_W83781D, | 275 | .id = I2C_DRIVERID_W83781D, |
| @@ -280,7 +279,6 @@ static struct i2c_driver w83781d_driver = { | |||
| 280 | 279 | ||
| 281 | static struct i2c_driver w83781d_isa_driver = { | 280 | static struct i2c_driver w83781d_isa_driver = { |
| 282 | .driver = { | 281 | .driver = { |
| 283 | .owner = THIS_MODULE, | ||
| 284 | .name = "w83781d-isa", | 282 | .name = "w83781d-isa", |
| 285 | }, | 283 | }, |
| 286 | .attach_adapter = w83781d_isa_attach_adapter, | 284 | .attach_adapter = w83781d_isa_attach_adapter, |
diff --git a/drivers/hwmon/w83792d.c b/drivers/hwmon/w83792d.c index 9018445ac1bf..ff1c9f0abf93 100644 --- a/drivers/hwmon/w83792d.c +++ b/drivers/hwmon/w83792d.c | |||
| @@ -318,7 +318,6 @@ static void w83792d_init_client(struct i2c_client *client); | |||
| 318 | 318 | ||
| 319 | static struct i2c_driver w83792d_driver = { | 319 | static struct i2c_driver w83792d_driver = { |
| 320 | .driver = { | 320 | .driver = { |
| 321 | .owner = THIS_MODULE, | ||
| 322 | .name = "w83792d", | 321 | .name = "w83792d", |
| 323 | }, | 322 | }, |
| 324 | .attach_adapter = w83792d_attach_adapter, | 323 | .attach_adapter = w83792d_attach_adapter, |
diff --git a/drivers/hwmon/w83l785ts.c b/drivers/hwmon/w83l785ts.c index fc9f202f2967..f66c0cfdeda7 100644 --- a/drivers/hwmon/w83l785ts.c +++ b/drivers/hwmon/w83l785ts.c | |||
| @@ -93,7 +93,6 @@ static struct w83l785ts_data *w83l785ts_update_device(struct device *dev); | |||
| 93 | 93 | ||
| 94 | static struct i2c_driver w83l785ts_driver = { | 94 | static struct i2c_driver w83l785ts_driver = { |
| 95 | .driver = { | 95 | .driver = { |
| 96 | .owner = THIS_MODULE, | ||
| 97 | .name = "w83l785ts", | 96 | .name = "w83l785ts", |
| 98 | }, | 97 | }, |
| 99 | .id = I2C_DRIVERID_W83L785TS, | 98 | .id = I2C_DRIVERID_W83L785TS, |
diff --git a/drivers/i2c/chips/ds1337.c b/drivers/i2c/chips/ds1337.c index a9d4ac770e39..93d483b8b770 100644 --- a/drivers/i2c/chips/ds1337.c +++ b/drivers/i2c/chips/ds1337.c | |||
| @@ -53,7 +53,6 @@ static int ds1337_command(struct i2c_client *client, unsigned int cmd, | |||
| 53 | */ | 53 | */ |
| 54 | static struct i2c_driver ds1337_driver = { | 54 | static struct i2c_driver ds1337_driver = { |
| 55 | .driver = { | 55 | .driver = { |
| 56 | .owner = THIS_MODULE, | ||
| 57 | .name = "ds1337", | 56 | .name = "ds1337", |
| 58 | }, | 57 | }, |
| 59 | .attach_adapter = ds1337_attach_adapter, | 58 | .attach_adapter = ds1337_attach_adapter, |
diff --git a/drivers/i2c/chips/ds1374.c b/drivers/i2c/chips/ds1374.c index 3e3ebd82a423..0710b9da9d54 100644 --- a/drivers/i2c/chips/ds1374.c +++ b/drivers/i2c/chips/ds1374.c | |||
| @@ -233,7 +233,6 @@ static int ds1374_detach(struct i2c_client *client) | |||
| 233 | 233 | ||
| 234 | static struct i2c_driver ds1374_driver = { | 234 | static struct i2c_driver ds1374_driver = { |
| 235 | .driver = { | 235 | .driver = { |
| 236 | .owner = THIS_MODULE, | ||
| 237 | .name = DS1374_DRV_NAME, | 236 | .name = DS1374_DRV_NAME, |
| 238 | }, | 237 | }, |
| 239 | .id = I2C_DRIVERID_DS1374, | 238 | .id = I2C_DRIVERID_DS1374, |
diff --git a/drivers/i2c/chips/eeprom.c b/drivers/i2c/chips/eeprom.c index d0c9f291500b..41116b7947f6 100644 --- a/drivers/i2c/chips/eeprom.c +++ b/drivers/i2c/chips/eeprom.c | |||
| @@ -69,7 +69,6 @@ static int eeprom_detach_client(struct i2c_client *client); | |||
| 69 | /* This is the driver that will be inserted */ | 69 | /* This is the driver that will be inserted */ |
| 70 | static struct i2c_driver eeprom_driver = { | 70 | static struct i2c_driver eeprom_driver = { |
| 71 | .driver = { | 71 | .driver = { |
| 72 | .owner = THIS_MODULE, | ||
| 73 | .name = "eeprom", | 72 | .name = "eeprom", |
| 74 | }, | 73 | }, |
| 75 | .id = I2C_DRIVERID_EEPROM, | 74 | .id = I2C_DRIVERID_EEPROM, |
diff --git a/drivers/i2c/chips/isp1301_omap.c b/drivers/i2c/chips/isp1301_omap.c index 9f1ec03e698d..1251c7fc18d5 100644 --- a/drivers/i2c/chips/isp1301_omap.c +++ b/drivers/i2c/chips/isp1301_omap.c | |||
| @@ -1633,7 +1633,6 @@ static int isp1301_scan_bus(struct i2c_adapter *bus) | |||
| 1633 | 1633 | ||
| 1634 | static struct i2c_driver isp1301_driver = { | 1634 | static struct i2c_driver isp1301_driver = { |
| 1635 | .driver = { | 1635 | .driver = { |
| 1636 | .owner = THIS_MODULE, | ||
| 1637 | .name = "isp1301_omap", | 1636 | .name = "isp1301_omap", |
| 1638 | }, | 1637 | }, |
| 1639 | .id = 1301, /* FIXME "official", i2c-ids.h */ | 1638 | .id = 1301, /* FIXME "official", i2c-ids.h */ |
diff --git a/drivers/i2c/chips/m41t00.c b/drivers/i2c/chips/m41t00.c index 92759b26fdcf..2dc3d48375fc 100644 --- a/drivers/i2c/chips/m41t00.c +++ b/drivers/i2c/chips/m41t00.c | |||
| @@ -212,7 +212,6 @@ m41t00_detach(struct i2c_client *client) | |||
| 212 | 212 | ||
| 213 | static struct i2c_driver m41t00_driver = { | 213 | static struct i2c_driver m41t00_driver = { |
| 214 | .driver = { | 214 | .driver = { |
| 215 | .owner = THIS_MODULE, | ||
| 216 | .name = M41T00_DRV_NAME, | 215 | .name = M41T00_DRV_NAME, |
| 217 | }, | 216 | }, |
| 218 | .id = I2C_DRIVERID_STM41T00, | 217 | .id = I2C_DRIVERID_STM41T00, |
diff --git a/drivers/i2c/chips/max6875.c b/drivers/i2c/chips/max6875.c index 37051173d233..6d3ff584155e 100644 --- a/drivers/i2c/chips/max6875.c +++ b/drivers/i2c/chips/max6875.c | |||
| @@ -68,7 +68,6 @@ static int max6875_detach_client(struct i2c_client *client); | |||
| 68 | /* This is the driver that will be inserted */ | 68 | /* This is the driver that will be inserted */ |
| 69 | static struct i2c_driver max6875_driver = { | 69 | static struct i2c_driver max6875_driver = { |
| 70 | .driver = { | 70 | .driver = { |
| 71 | .owner = THIS_MODULE, | ||
| 72 | .name = "max6875", | 71 | .name = "max6875", |
| 73 | }, | 72 | }, |
| 74 | .attach_adapter = max6875_attach_adapter, | 73 | .attach_adapter = max6875_attach_adapter, |
diff --git a/drivers/i2c/chips/pca9539.c b/drivers/i2c/chips/pca9539.c index bb57faa6d5c1..54b6e6a4beed 100644 --- a/drivers/i2c/chips/pca9539.c +++ b/drivers/i2c/chips/pca9539.c | |||
| @@ -39,7 +39,6 @@ static int pca9539_detach_client(struct i2c_client *client); | |||
| 39 | /* This is the driver that will be inserted */ | 39 | /* This is the driver that will be inserted */ |
| 40 | static struct i2c_driver pca9539_driver = { | 40 | static struct i2c_driver pca9539_driver = { |
| 41 | .driver = { | 41 | .driver = { |
| 42 | .owner = THIS_MODULE, | ||
| 43 | .name = "pca9539", | 42 | .name = "pca9539", |
| 44 | }, | 43 | }, |
| 45 | .attach_adapter = pca9539_attach_adapter, | 44 | .attach_adapter = pca9539_attach_adapter, |
diff --git a/drivers/i2c/chips/pcf8574.c b/drivers/i2c/chips/pcf8574.c index 3d4d4d61876b..c3e6449c4481 100644 --- a/drivers/i2c/chips/pcf8574.c +++ b/drivers/i2c/chips/pcf8574.c | |||
| @@ -66,7 +66,6 @@ static void pcf8574_init_client(struct i2c_client *client); | |||
| 66 | /* This is the driver that will be inserted */ | 66 | /* This is the driver that will be inserted */ |
| 67 | static struct i2c_driver pcf8574_driver = { | 67 | static struct i2c_driver pcf8574_driver = { |
| 68 | .driver = { | 68 | .driver = { |
| 69 | .owner = THIS_MODULE, | ||
| 70 | .name = "pcf8574", | 69 | .name = "pcf8574", |
| 71 | }, | 70 | }, |
| 72 | .id = I2C_DRIVERID_PCF8574, | 71 | .id = I2C_DRIVERID_PCF8574, |
diff --git a/drivers/i2c/chips/pcf8591.c b/drivers/i2c/chips/pcf8591.c index 8f41bb3a771c..36cff09c678d 100644 --- a/drivers/i2c/chips/pcf8591.c +++ b/drivers/i2c/chips/pcf8591.c | |||
| @@ -89,7 +89,6 @@ static int pcf8591_read_channel(struct device *dev, int channel); | |||
| 89 | /* This is the driver that will be inserted */ | 89 | /* This is the driver that will be inserted */ |
| 90 | static struct i2c_driver pcf8591_driver = { | 90 | static struct i2c_driver pcf8591_driver = { |
| 91 | .driver = { | 91 | .driver = { |
| 92 | .owner = THIS_MODULE, | ||
| 93 | .name = "pcf8591", | 92 | .name = "pcf8591", |
| 94 | }, | 93 | }, |
| 95 | .id = I2C_DRIVERID_PCF8591, | 94 | .id = I2C_DRIVERID_PCF8591, |
diff --git a/drivers/i2c/chips/rtc8564.c b/drivers/i2c/chips/rtc8564.c index 6f567e2ee073..ceaa6b0bdfd6 100644 --- a/drivers/i2c/chips/rtc8564.c +++ b/drivers/i2c/chips/rtc8564.c | |||
| @@ -359,7 +359,6 @@ rtc8564_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
| 359 | 359 | ||
| 360 | static struct i2c_driver rtc8564_driver = { | 360 | static struct i2c_driver rtc8564_driver = { |
| 361 | .driver = { | 361 | .driver = { |
| 362 | .owner = THIS_MODULE, | ||
| 363 | .name = "RTC8564", | 362 | .name = "RTC8564", |
| 364 | }, | 363 | }, |
| 365 | .id = I2C_DRIVERID_RTC8564, | 364 | .id = I2C_DRIVERID_RTC8564, |
diff --git a/drivers/i2c/chips/tps65010.c b/drivers/i2c/chips/tps65010.c index 92947a6c7f1f..e70b3db69edd 100644 --- a/drivers/i2c/chips/tps65010.c +++ b/drivers/i2c/chips/tps65010.c | |||
| @@ -638,7 +638,6 @@ static int __init tps65010_scan_bus(struct i2c_adapter *bus) | |||
| 638 | 638 | ||
| 639 | static struct i2c_driver tps65010_driver = { | 639 | static struct i2c_driver tps65010_driver = { |
| 640 | .driver = { | 640 | .driver = { |
| 641 | .owner = THIS_MODULE, | ||
| 642 | .name = "tps65010", | 641 | .name = "tps65010", |
| 643 | }, | 642 | }, |
| 644 | .attach_adapter = tps65010_scan_bus, | 643 | .attach_adapter = tps65010_scan_bus, |
diff --git a/drivers/i2c/chips/x1205.c b/drivers/i2c/chips/x1205.c index 6880eabf1380..245fffa92dbd 100644 --- a/drivers/i2c/chips/x1205.c +++ b/drivers/i2c/chips/x1205.c | |||
| @@ -106,7 +106,6 @@ static int x1205_command(struct i2c_client *client, unsigned int cmd, | |||
| 106 | 106 | ||
| 107 | static struct i2c_driver x1205_driver = { | 107 | static struct i2c_driver x1205_driver = { |
| 108 | .driver = { | 108 | .driver = { |
| 109 | .owner = THIS_MODULE, | ||
| 110 | .name = "x1205", | 109 | .name = "x1205", |
| 111 | }, | 110 | }, |
| 112 | .attach_adapter = &x1205_attach, | 111 | .attach_adapter = &x1205_attach, |
diff --git a/drivers/i2c/i2c-dev.c b/drivers/i2c/i2c-dev.c index 9715217a0343..e140dd7d6a0c 100644 --- a/drivers/i2c/i2c-dev.c +++ b/drivers/i2c/i2c-dev.c | |||
| @@ -482,7 +482,6 @@ static int i2cdev_command(struct i2c_client *client, unsigned int cmd, | |||
| 482 | 482 | ||
| 483 | static struct i2c_driver i2cdev_driver = { | 483 | static struct i2c_driver i2cdev_driver = { |
| 484 | .driver = { | 484 | .driver = { |
| 485 | .owner = THIS_MODULE, | ||
| 486 | .name = "dev_driver", | 485 | .name = "dev_driver", |
| 487 | }, | 486 | }, |
| 488 | .id = I2C_DRIVERID_I2CDEV, | 487 | .id = I2C_DRIVERID_I2CDEV, |
diff --git a/drivers/macintosh/therm_adt746x.c b/drivers/macintosh/therm_adt746x.c index 8bb1d857e14d..02a3117ef92d 100644 --- a/drivers/macintosh/therm_adt746x.c +++ b/drivers/macintosh/therm_adt746x.c | |||
| @@ -172,7 +172,6 @@ detach_thermostat(struct i2c_adapter *adapter) | |||
| 172 | 172 | ||
| 173 | static struct i2c_driver thermostat_driver = { | 173 | static struct i2c_driver thermostat_driver = { |
| 174 | .driver = { | 174 | .driver = { |
| 175 | .owner = THIS_MODULE, | ||
| 176 | .name = "therm_adt746x", | 175 | .name = "therm_adt746x", |
| 177 | }, | 176 | }, |
| 178 | .attach_adapter = attach_thermostat, | 177 | .attach_adapter = attach_thermostat, |
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c index 97807be6422b..cf72b782f60f 100644 --- a/drivers/macintosh/therm_pm72.c +++ b/drivers/macintosh/therm_pm72.c | |||
| @@ -284,7 +284,6 @@ static int therm_pm72_detach(struct i2c_adapter *adapter); | |||
| 284 | static struct i2c_driver therm_pm72_driver = | 284 | static struct i2c_driver therm_pm72_driver = |
| 285 | { | 285 | { |
| 286 | .driver = { | 286 | .driver = { |
| 287 | .owner = THIS_MODULE, | ||
| 288 | .name = "therm_pm72", | 287 | .name = "therm_pm72", |
| 289 | }, | 288 | }, |
| 290 | .attach_adapter = therm_pm72_attach, | 289 | .attach_adapter = therm_pm72_attach, |
diff --git a/drivers/macintosh/therm_windtunnel.c b/drivers/macintosh/therm_windtunnel.c index 259f19d5816c..3d9dd2e166aa 100644 --- a/drivers/macintosh/therm_windtunnel.c +++ b/drivers/macintosh/therm_windtunnel.c | |||
| @@ -355,7 +355,6 @@ do_detach( struct i2c_client *client ) | |||
| 355 | 355 | ||
| 356 | static struct i2c_driver g4fan_driver = { | 356 | static struct i2c_driver g4fan_driver = { |
| 357 | .driver = { | 357 | .driver = { |
| 358 | .owner = THIS_MODULE, | ||
| 359 | .name = "therm_windtunnel", | 358 | .name = "therm_windtunnel", |
| 360 | }, | 359 | }, |
| 361 | .id = I2C_DRIVERID_G4FAN, | 360 | .id = I2C_DRIVERID_G4FAN, |
diff --git a/drivers/macintosh/windfarm_lm75_sensor.c b/drivers/macintosh/windfarm_lm75_sensor.c index 555d0e4eda1d..fd16642d98ab 100644 --- a/drivers/macintosh/windfarm_lm75_sensor.c +++ b/drivers/macintosh/windfarm_lm75_sensor.c | |||
| @@ -48,7 +48,6 @@ static int wf_lm75_detach(struct i2c_client *client); | |||
| 48 | 48 | ||
| 49 | static struct i2c_driver wf_lm75_driver = { | 49 | static struct i2c_driver wf_lm75_driver = { |
| 50 | .driver = { | 50 | .driver = { |
| 51 | .owner = THIS_MODULE, | ||
| 52 | .name = "wf_lm75", | 51 | .name = "wf_lm75", |
| 53 | }, | 52 | }, |
| 54 | .attach_adapter = wf_lm75_attach, | 53 | .attach_adapter = wf_lm75_attach, |
diff --git a/drivers/media/video/adv7170.c b/drivers/media/video/adv7170.c index c5f1c6b681bd..e61003de1d5f 100644 --- a/drivers/media/video/adv7170.c +++ b/drivers/media/video/adv7170.c | |||
| @@ -498,7 +498,6 @@ adv7170_detach_client (struct i2c_client *client) | |||
| 498 | 498 | ||
| 499 | static struct i2c_driver i2c_driver_adv7170 = { | 499 | static struct i2c_driver i2c_driver_adv7170 = { |
| 500 | .driver = { | 500 | .driver = { |
| 501 | .owner = THIS_MODULE, | ||
| 502 | .name = "adv7170", /* name */ | 501 | .name = "adv7170", /* name */ |
| 503 | }, | 502 | }, |
| 504 | 503 | ||
diff --git a/drivers/media/video/adv7175.c b/drivers/media/video/adv7175.c index 33158aa734d3..6d9536a71ee4 100644 --- a/drivers/media/video/adv7175.c +++ b/drivers/media/video/adv7175.c | |||
| @@ -548,7 +548,6 @@ adv7175_detach_client (struct i2c_client *client) | |||
| 548 | 548 | ||
| 549 | static struct i2c_driver i2c_driver_adv7175 = { | 549 | static struct i2c_driver i2c_driver_adv7175 = { |
| 550 | .driver = { | 550 | .driver = { |
| 551 | .owner = THIS_MODULE, | ||
| 552 | .name = "adv7175", /* name */ | 551 | .name = "adv7175", /* name */ |
| 553 | }, | 552 | }, |
| 554 | 553 | ||
diff --git a/drivers/media/video/bt819.c b/drivers/media/video/bt819.c index 5868bbb73a09..560b99891753 100644 --- a/drivers/media/video/bt819.c +++ b/drivers/media/video/bt819.c | |||
| @@ -623,7 +623,6 @@ bt819_detach_client (struct i2c_client *client) | |||
| 623 | 623 | ||
| 624 | static struct i2c_driver i2c_driver_bt819 = { | 624 | static struct i2c_driver i2c_driver_bt819 = { |
| 625 | .driver = { | 625 | .driver = { |
| 626 | .owner = THIS_MODULE, | ||
| 627 | .name = "bt819", | 626 | .name = "bt819", |
| 628 | }, | 627 | }, |
| 629 | 628 | ||
diff --git a/drivers/media/video/bt832.c b/drivers/media/video/bt832.c index 347eb711fc06..1c3ff5f38a6d 100644 --- a/drivers/media/video/bt832.c +++ b/drivers/media/video/bt832.c | |||
| @@ -231,7 +231,6 @@ bt832_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
| 231 | 231 | ||
| 232 | static struct i2c_driver driver = { | 232 | static struct i2c_driver driver = { |
| 233 | .driver = { | 233 | .driver = { |
| 234 | .owner = THIS_MODULE, | ||
| 235 | .name = "i2c bt832 driver", | 234 | .name = "i2c bt832 driver", |
| 236 | }, | 235 | }, |
| 237 | .id = -1, /* FIXME */ | 236 | .id = -1, /* FIXME */ |
diff --git a/drivers/media/video/bt856.c b/drivers/media/video/bt856.c index 207525aa156e..60508069bbed 100644 --- a/drivers/media/video/bt856.c +++ b/drivers/media/video/bt856.c | |||
| @@ -405,7 +405,6 @@ bt856_detach_client (struct i2c_client *client) | |||
| 405 | 405 | ||
| 406 | static struct i2c_driver i2c_driver_bt856 = { | 406 | static struct i2c_driver i2c_driver_bt856 = { |
| 407 | .driver = { | 407 | .driver = { |
| 408 | .owner = THIS_MODULE, | ||
| 409 | .name = "bt856", | 408 | .name = "bt856", |
| 410 | }, | 409 | }, |
| 411 | 410 | ||
diff --git a/drivers/media/video/cs53l32a.c b/drivers/media/video/cs53l32a.c index 60484f936489..643ead1a87ee 100644 --- a/drivers/media/video/cs53l32a.c +++ b/drivers/media/video/cs53l32a.c | |||
| @@ -217,7 +217,6 @@ static int cs53l32a_detach(struct i2c_client *client) | |||
| 217 | /* i2c implementation */ | 217 | /* i2c implementation */ |
| 218 | static struct i2c_driver i2c_driver = { | 218 | static struct i2c_driver i2c_driver = { |
| 219 | .driver = { | 219 | .driver = { |
| 220 | .owner = THIS_MODULE, | ||
| 221 | .name = "cs53l32a", | 220 | .name = "cs53l32a", |
| 222 | }, | 221 | }, |
| 223 | .id = I2C_DRIVERID_CS53L32A, | 222 | .id = I2C_DRIVERID_CS53L32A, |
diff --git a/drivers/media/video/cx25840/cx25840-core.c b/drivers/media/video/cx25840/cx25840-core.c index 830d5195d1c0..3b09f46dddf6 100644 --- a/drivers/media/video/cx25840/cx25840-core.c +++ b/drivers/media/video/cx25840/cx25840-core.c | |||
| @@ -844,7 +844,6 @@ static int cx25840_detach_client(struct i2c_client *client) | |||
| 844 | 844 | ||
| 845 | static struct i2c_driver i2c_driver_cx25840 = { | 845 | static struct i2c_driver i2c_driver_cx25840 = { |
| 846 | .driver = { | 846 | .driver = { |
| 847 | .owner = THIS_MODULE, | ||
| 848 | .name = "cx25840", | 847 | .name = "cx25840", |
| 849 | }, | 848 | }, |
| 850 | 849 | ||
diff --git a/drivers/media/video/indycam.c b/drivers/media/video/indycam.c index 96a808e8b2ca..bb5cbecffcc3 100644 --- a/drivers/media/video/indycam.c +++ b/drivers/media/video/indycam.c | |||
| @@ -452,7 +452,6 @@ static int indycam_command(struct i2c_client *client, unsigned int cmd, | |||
| 452 | 452 | ||
| 453 | static struct i2c_driver i2c_driver_indycam = { | 453 | static struct i2c_driver i2c_driver_indycam = { |
| 454 | .driver = { | 454 | .driver = { |
| 455 | .owner = THIS_MODULE, | ||
| 456 | .name = "indycam", | 455 | .name = "indycam", |
| 457 | }, | 456 | }, |
| 458 | .id = I2C_DRIVERID_INDYCAM, | 457 | .id = I2C_DRIVERID_INDYCAM, |
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c index 82c7f5042659..3cc1d6a6019b 100644 --- a/drivers/media/video/ir-kbd-i2c.c +++ b/drivers/media/video/ir-kbd-i2c.c | |||
| @@ -279,7 +279,6 @@ static int ir_probe(struct i2c_adapter *adap); | |||
| 279 | 279 | ||
| 280 | static struct i2c_driver driver = { | 280 | static struct i2c_driver driver = { |
| 281 | .driver = { | 281 | .driver = { |
| 282 | .owner = THIS_MODULE, | ||
| 283 | .name = "ir remote kbd driver", | 282 | .name = "ir remote kbd driver", |
| 284 | }, | 283 | }, |
| 285 | .id = I2C_DRIVERID_INFRARED, | 284 | .id = I2C_DRIVERID_INFRARED, |
diff --git a/drivers/media/video/msp3400.c b/drivers/media/video/msp3400.c index 3847d890d632..183253e2dd91 100644 --- a/drivers/media/video/msp3400.c +++ b/drivers/media/video/msp3400.c | |||
| @@ -1569,7 +1569,6 @@ static struct i2c_driver driver = { | |||
| 1569 | .detach_client = msp_detach, | 1569 | .detach_client = msp_detach, |
| 1570 | .command = msp_command, | 1570 | .command = msp_command, |
| 1571 | .driver = { | 1571 | .driver = { |
| 1572 | .owner = THIS_MODULE, | ||
| 1573 | .name = "i2c msp3400 driver", | 1572 | .name = "i2c msp3400 driver", |
| 1574 | .suspend = msp_suspend, | 1573 | .suspend = msp_suspend, |
| 1575 | .resume = msp_resume, | 1574 | .resume = msp_resume, |
diff --git a/drivers/media/video/ovcamchip/ovcamchip_core.c b/drivers/media/video/ovcamchip/ovcamchip_core.c index 9ac398b2d915..428f1bb75ec3 100644 --- a/drivers/media/video/ovcamchip/ovcamchip_core.c +++ b/drivers/media/video/ovcamchip/ovcamchip_core.c | |||
| @@ -411,7 +411,6 @@ static int ovcamchip_command(struct i2c_client *c, unsigned int cmd, void *arg) | |||
| 411 | 411 | ||
| 412 | static struct i2c_driver driver = { | 412 | static struct i2c_driver driver = { |
| 413 | .driver = { | 413 | .driver = { |
| 414 | .owner = THIS_MODULE, | ||
| 415 | .name = "ovcamchip", | 414 | .name = "ovcamchip", |
| 416 | }, | 415 | }, |
| 417 | .id = I2C_DRIVERID_OVCAMCHIP, | 416 | .id = I2C_DRIVERID_OVCAMCHIP, |
diff --git a/drivers/media/video/saa5246a.c b/drivers/media/video/saa5246a.c index 8c99edbe1843..135c21479fc0 100644 --- a/drivers/media/video/saa5246a.c +++ b/drivers/media/video/saa5246a.c | |||
| @@ -164,7 +164,6 @@ static int saa5246a_command(struct i2c_client *device, unsigned int cmd, | |||
| 164 | static struct i2c_driver i2c_driver_videotext = | 164 | static struct i2c_driver i2c_driver_videotext = |
| 165 | { | 165 | { |
| 166 | .driver = { | 166 | .driver = { |
| 167 | .owner = THIS_MODULE, | ||
| 168 | .name = IF_NAME, /* name */ | 167 | .name = IF_NAME, /* name */ |
| 169 | }, | 168 | }, |
| 170 | .id = I2C_DRIVERID_SAA5249, /* in i2c.h */ | 169 | .id = I2C_DRIVERID_SAA5249, /* in i2c.h */ |
diff --git a/drivers/media/video/saa5249.c b/drivers/media/video/saa5249.c index 5b346bdb1d59..d7c4e330cadd 100644 --- a/drivers/media/video/saa5249.c +++ b/drivers/media/video/saa5249.c | |||
| @@ -237,7 +237,6 @@ static int saa5249_command(struct i2c_client *device, | |||
| 237 | static struct i2c_driver i2c_driver_videotext = | 237 | static struct i2c_driver i2c_driver_videotext = |
| 238 | { | 238 | { |
| 239 | .driver = { | 239 | .driver = { |
| 240 | .owner = THIS_MODULE, | ||
| 241 | .name = IF_NAME, /* name */ | 240 | .name = IF_NAME, /* name */ |
| 242 | }, | 241 | }, |
| 243 | .id = I2C_DRIVERID_SAA5249, /* in i2c.h */ | 242 | .id = I2C_DRIVERID_SAA5249, /* in i2c.h */ |
diff --git a/drivers/media/video/saa6588.c b/drivers/media/video/saa6588.c index 5ea36ee33b98..d60a783e0473 100644 --- a/drivers/media/video/saa6588.c +++ b/drivers/media/video/saa6588.c | |||
| @@ -496,7 +496,6 @@ static int saa6588_command(struct i2c_client *client, unsigned int cmd, | |||
| 496 | 496 | ||
| 497 | static struct i2c_driver driver = { | 497 | static struct i2c_driver driver = { |
| 498 | .driver = { | 498 | .driver = { |
| 499 | .owner = THIS_MODULE, | ||
| 500 | .name = "i2c saa6588 driver", | 499 | .name = "i2c saa6588 driver", |
| 501 | }, | 500 | }, |
| 502 | .id = -1, /* FIXME */ | 501 | .id = -1, /* FIXME */ |
diff --git a/drivers/media/video/saa7110.c b/drivers/media/video/saa7110.c index 58f60baa27e9..619ff0b7a1ff 100644 --- a/drivers/media/video/saa7110.c +++ b/drivers/media/video/saa7110.c | |||
| @@ -587,7 +587,6 @@ saa7110_detach_client (struct i2c_client *client) | |||
| 587 | 587 | ||
| 588 | static struct i2c_driver i2c_driver_saa7110 = { | 588 | static struct i2c_driver i2c_driver_saa7110 = { |
| 589 | .driver = { | 589 | .driver = { |
| 590 | .owner = THIS_MODULE, | ||
| 591 | .name = "saa7110", | 590 | .name = "saa7110", |
| 592 | }, | 591 | }, |
| 593 | 592 | ||
diff --git a/drivers/media/video/saa7111.c b/drivers/media/video/saa7111.c index 946eb74db374..acaeee592b54 100644 --- a/drivers/media/video/saa7111.c +++ b/drivers/media/video/saa7111.c | |||
| @@ -590,7 +590,6 @@ saa7111_detach_client (struct i2c_client *client) | |||
| 590 | 590 | ||
| 591 | static struct i2c_driver i2c_driver_saa7111 = { | 591 | static struct i2c_driver i2c_driver_saa7111 = { |
| 592 | .driver = { | 592 | .driver = { |
| 593 | .owner = THIS_MODULE, | ||
| 594 | .name = "saa7111", | 593 | .name = "saa7111", |
| 595 | }, | 594 | }, |
| 596 | 595 | ||
diff --git a/drivers/media/video/saa7114.c b/drivers/media/video/saa7114.c index df53b58a9dbc..b7ac0122f729 100644 --- a/drivers/media/video/saa7114.c +++ b/drivers/media/video/saa7114.c | |||
| @@ -1204,7 +1204,6 @@ saa7114_detach_client (struct i2c_client *client) | |||
| 1204 | 1204 | ||
| 1205 | static struct i2c_driver i2c_driver_saa7114 = { | 1205 | static struct i2c_driver i2c_driver_saa7114 = { |
| 1206 | .driver = { | 1206 | .driver = { |
| 1207 | .owner = THIS_MODULE, | ||
| 1208 | .name = "saa7114", | 1207 | .name = "saa7114", |
| 1209 | }, | 1208 | }, |
| 1210 | 1209 | ||
diff --git a/drivers/media/video/saa7115.c b/drivers/media/video/saa7115.c index 6ac1ab4c9809..29e28c742cd4 100644 --- a/drivers/media/video/saa7115.c +++ b/drivers/media/video/saa7115.c | |||
| @@ -1355,7 +1355,6 @@ static int saa7115_detach(struct i2c_client *client) | |||
| 1355 | /* i2c implementation */ | 1355 | /* i2c implementation */ |
| 1356 | static struct i2c_driver i2c_driver_saa7115 = { | 1356 | static struct i2c_driver i2c_driver_saa7115 = { |
| 1357 | .driver = { | 1357 | .driver = { |
| 1358 | .owner = THIS_MODULE, | ||
| 1359 | .name = "saa7115", | 1358 | .name = "saa7115", |
| 1360 | }, | 1359 | }, |
| 1361 | .id = I2C_DRIVERID_SAA711X, | 1360 | .id = I2C_DRIVERID_SAA711X, |
diff --git a/drivers/media/video/saa711x.c b/drivers/media/video/saa711x.c index 3f7cfb7e46eb..8008537391b5 100644 --- a/drivers/media/video/saa711x.c +++ b/drivers/media/video/saa711x.c | |||
| @@ -565,7 +565,6 @@ saa711x_detach_client (struct i2c_client *client) | |||
| 565 | 565 | ||
| 566 | static struct i2c_driver i2c_driver_saa711x = { | 566 | static struct i2c_driver i2c_driver_saa711x = { |
| 567 | .driver = { | 567 | .driver = { |
| 568 | .owner = THIS_MODULE, | ||
| 569 | .name = "saa711x", | 568 | .name = "saa711x", |
| 570 | }, | 569 | }, |
| 571 | 570 | ||
diff --git a/drivers/media/video/saa7127.c b/drivers/media/video/saa7127.c index 659cb8a0b21c..bca6ed0e2752 100644 --- a/drivers/media/video/saa7127.c +++ b/drivers/media/video/saa7127.c | |||
| @@ -821,7 +821,6 @@ static int saa7127_detach(struct i2c_client *client) | |||
| 821 | 821 | ||
| 822 | static struct i2c_driver i2c_driver_saa7127 = { | 822 | static struct i2c_driver i2c_driver_saa7127 = { |
| 823 | .driver = { | 823 | .driver = { |
| 824 | .owner = THIS_MODULE, | ||
| 825 | .name = "saa7127", | 824 | .name = "saa7127", |
| 826 | }, | 825 | }, |
| 827 | .id = I2C_DRIVERID_SAA7127, | 826 | .id = I2C_DRIVERID_SAA7127, |
diff --git a/drivers/media/video/saa7134/saa6752hs.c b/drivers/media/video/saa7134/saa6752hs.c index 0e8c9ed62b13..4615a982ac64 100644 --- a/drivers/media/video/saa7134/saa6752hs.c +++ b/drivers/media/video/saa7134/saa6752hs.c | |||
| @@ -598,7 +598,6 @@ saa6752hs_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
| 598 | 598 | ||
| 599 | static struct i2c_driver driver = { | 599 | static struct i2c_driver driver = { |
| 600 | .driver = { | 600 | .driver = { |
| 601 | .owner = THIS_MODULE, | ||
| 602 | .name = "i2c saa6752hs MPEG encoder", | 601 | .name = "i2c saa6752hs MPEG encoder", |
| 603 | }, | 602 | }, |
| 604 | .id = I2C_DRIVERID_SAA6752HS, | 603 | .id = I2C_DRIVERID_SAA6752HS, |
diff --git a/drivers/media/video/saa7185.c b/drivers/media/video/saa7185.c index 64047d77388c..f72a9f796209 100644 --- a/drivers/media/video/saa7185.c +++ b/drivers/media/video/saa7185.c | |||
| @@ -487,7 +487,6 @@ saa7185_detach_client (struct i2c_client *client) | |||
| 487 | 487 | ||
| 488 | static struct i2c_driver i2c_driver_saa7185 = { | 488 | static struct i2c_driver i2c_driver_saa7185 = { |
| 489 | .driver = { | 489 | .driver = { |
| 490 | .owner = THIS_MODULE, | ||
| 491 | .name = "saa7185", /* name */ | 490 | .name = "saa7185", /* name */ |
| 492 | }, | 491 | }, |
| 493 | 492 | ||
diff --git a/drivers/media/video/saa7191.c b/drivers/media/video/saa7191.c index a0f8eaf251ef..41f6f05a0436 100644 --- a/drivers/media/video/saa7191.c +++ b/drivers/media/video/saa7191.c | |||
| @@ -789,7 +789,6 @@ static int saa7191_command(struct i2c_client *client, unsigned int cmd, | |||
| 789 | 789 | ||
| 790 | static struct i2c_driver i2c_driver_saa7191 = { | 790 | static struct i2c_driver i2c_driver_saa7191 = { |
| 791 | .driver = { | 791 | .driver = { |
| 792 | .owner = THIS_MODULE, | ||
| 793 | .name = "saa7191", | 792 | .name = "saa7191", |
| 794 | }, | 793 | }, |
| 795 | .id = I2C_DRIVERID_SAA7191, | 794 | .id = I2C_DRIVERID_SAA7191, |
diff --git a/drivers/media/video/tda7432.c b/drivers/media/video/tda7432.c index 59674d928ff7..549c9929f107 100644 --- a/drivers/media/video/tda7432.c +++ b/drivers/media/video/tda7432.c | |||
| @@ -502,7 +502,6 @@ static int tda7432_command(struct i2c_client *client, | |||
| 502 | 502 | ||
| 503 | static struct i2c_driver driver = { | 503 | static struct i2c_driver driver = { |
| 504 | .driver = { | 504 | .driver = { |
| 505 | .owner = THIS_MODULE, | ||
| 506 | .name = "i2c tda7432 driver", | 505 | .name = "i2c tda7432 driver", |
| 507 | }, | 506 | }, |
| 508 | .id = I2C_DRIVERID_TDA7432, | 507 | .id = I2C_DRIVERID_TDA7432, |
diff --git a/drivers/media/video/tda9840.c b/drivers/media/video/tda9840.c index 8efc726874fc..2a353d237c52 100644 --- a/drivers/media/video/tda9840.c +++ b/drivers/media/video/tda9840.c | |||
| @@ -222,7 +222,6 @@ static int detach(struct i2c_client *client) | |||
| 222 | 222 | ||
| 223 | static struct i2c_driver driver = { | 223 | static struct i2c_driver driver = { |
| 224 | .driver = { | 224 | .driver = { |
| 225 | .owner = THIS_MODULE, | ||
| 226 | .name = "tda9840", | 225 | .name = "tda9840", |
| 227 | }, | 226 | }, |
| 228 | .id = I2C_DRIVERID_TDA9840, | 227 | .id = I2C_DRIVERID_TDA9840, |
diff --git a/drivers/media/video/tda9875.c b/drivers/media/video/tda9875.c index de896167029e..9c3ecf7a0fed 100644 --- a/drivers/media/video/tda9875.c +++ b/drivers/media/video/tda9875.c | |||
| @@ -373,7 +373,6 @@ static int tda9875_command(struct i2c_client *client, | |||
| 373 | 373 | ||
| 374 | static struct i2c_driver driver = { | 374 | static struct i2c_driver driver = { |
| 375 | .driver = { | 375 | .driver = { |
| 376 | .owner = THIS_MODULE, | ||
| 377 | .name = "i2c tda9875 driver", | 376 | .name = "i2c tda9875 driver", |
| 378 | }, | 377 | }, |
| 379 | .id = I2C_DRIVERID_TDA9875, | 378 | .id = I2C_DRIVERID_TDA9875, |
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index 081f47805158..7165a1b9625a 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c | |||
| @@ -824,7 +824,6 @@ static struct i2c_driver driver = { | |||
| 824 | .detach_client = tda9887_detach, | 824 | .detach_client = tda9887_detach, |
| 825 | .command = tda9887_command, | 825 | .command = tda9887_command, |
| 826 | .driver = { | 826 | .driver = { |
| 827 | .owner = THIS_MODULE, | ||
| 828 | .name = "i2c tda9887 driver", | 827 | .name = "i2c tda9887 driver", |
| 829 | .suspend = tda9887_suspend, | 828 | .suspend = tda9887_suspend, |
| 830 | .resume = tda9887_resume, | 829 | .resume = tda9887_resume, |
diff --git a/drivers/media/video/tea6415c.c b/drivers/media/video/tea6415c.c index e7e2213c39e1..17046d974b74 100644 --- a/drivers/media/video/tea6415c.c +++ b/drivers/media/video/tea6415c.c | |||
| @@ -191,7 +191,6 @@ static int command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
| 191 | 191 | ||
| 192 | static struct i2c_driver driver = { | 192 | static struct i2c_driver driver = { |
| 193 | .driver = { | 193 | .driver = { |
| 194 | .owner = THIS_MODULE, | ||
| 195 | .name = "tea6415c", | 194 | .name = "tea6415c", |
| 196 | }, | 195 | }, |
| 197 | .id = I2C_DRIVERID_TEA6415C, | 196 | .id = I2C_DRIVERID_TEA6415C, |
diff --git a/drivers/media/video/tea6420.c b/drivers/media/video/tea6420.c index 74cc25f04056..3dc89d9a4e42 100644 --- a/drivers/media/video/tea6420.c +++ b/drivers/media/video/tea6420.c | |||
| @@ -168,7 +168,6 @@ static int command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
| 168 | 168 | ||
| 169 | static struct i2c_driver driver = { | 169 | static struct i2c_driver driver = { |
| 170 | .driver = { | 170 | .driver = { |
| 171 | .owner = THIS_MODULE, | ||
| 172 | .name = "tea6420", | 171 | .name = "tea6420", |
| 173 | }, | 172 | }, |
| 174 | .id = I2C_DRIVERID_TEA6420, | 173 | .id = I2C_DRIVERID_TEA6420, |
diff --git a/drivers/media/video/tuner-3036.c b/drivers/media/video/tuner-3036.c index 83257af8db41..d97f66804c37 100644 --- a/drivers/media/video/tuner-3036.c +++ b/drivers/media/video/tuner-3036.c | |||
| @@ -176,7 +176,6 @@ static struct i2c_driver | |||
| 176 | i2c_driver_tuner = | 176 | i2c_driver_tuner = |
| 177 | { | 177 | { |
| 178 | .driver = { | 178 | .driver = { |
| 179 | .owner = THIS_MODULE, | ||
| 180 | .name = "sab3036", | 179 | .name = "sab3036", |
| 181 | }, | 180 | }, |
| 182 | .id = I2C_DRIVERID_SAB3036, | 181 | .id = I2C_DRIVERID_SAB3036, |
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index e8c854948de9..c13c7b95ef35 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c | |||
| @@ -747,7 +747,6 @@ static struct i2c_driver driver = { | |||
| 747 | .detach_client = tuner_detach, | 747 | .detach_client = tuner_detach, |
| 748 | .command = tuner_command, | 748 | .command = tuner_command, |
| 749 | .driver = { | 749 | .driver = { |
| 750 | .owner = THIS_MODULE, | ||
| 751 | .name = "tuner", | 750 | .name = "tuner", |
| 752 | .suspend = tuner_suspend, | 751 | .suspend = tuner_suspend, |
| 753 | .resume = tuner_resume, | 752 | .resume = tuner_resume, |
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 30bb2a3615e9..0292c5abf14a 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
| @@ -1703,7 +1703,6 @@ static int chip_command(struct i2c_client *client, | |||
| 1703 | 1703 | ||
| 1704 | static struct i2c_driver driver = { | 1704 | static struct i2c_driver driver = { |
| 1705 | .driver = { | 1705 | .driver = { |
| 1706 | .owner = THIS_MODULE, | ||
| 1707 | .name = "generic i2c audio driver", | 1706 | .name = "generic i2c audio driver", |
| 1708 | }, | 1707 | }, |
| 1709 | .id = I2C_DRIVERID_TVAUDIO, | 1708 | .id = I2C_DRIVERID_TVAUDIO, |
diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index d8b5a1781809..8ac4cb82a459 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video/tveeprom.c | |||
| @@ -779,7 +779,6 @@ tveeprom_detach_client (struct i2c_client *client) | |||
| 779 | 779 | ||
| 780 | static struct i2c_driver i2c_driver_tveeprom = { | 780 | static struct i2c_driver i2c_driver_tveeprom = { |
| 781 | .driver = { | 781 | .driver = { |
| 782 | .owner = THIS_MODULE, | ||
| 783 | .name = "tveeprom", | 782 | .name = "tveeprom", |
| 784 | }, | 783 | }, |
| 785 | .id = I2C_DRIVERID_TVEEPROM, | 784 | .id = I2C_DRIVERID_TVEEPROM, |
diff --git a/drivers/media/video/tvmixer.c b/drivers/media/video/tvmixer.c index 5f4d01854767..e837f9f7fed6 100644 --- a/drivers/media/video/tvmixer.c +++ b/drivers/media/video/tvmixer.c | |||
| @@ -229,7 +229,6 @@ static int tvmixer_release(struct inode *inode, struct file *file) | |||
| 229 | static struct i2c_driver driver = { | 229 | static struct i2c_driver driver = { |
| 230 | #ifdef I2C_PEC | 230 | #ifdef I2C_PEC |
| 231 | .driver = { | 231 | .driver = { |
| 232 | .owner = THIS_MODULE, | ||
| 233 | .name = "tv card mixer driver", | 232 | .name = "tv card mixer driver", |
| 234 | }, | 233 | }, |
| 235 | #else | 234 | #else |
diff --git a/drivers/media/video/tvp5150.c b/drivers/media/video/tvp5150.c index 5eca71fa8cbd..a60442ea4f94 100644 --- a/drivers/media/video/tvp5150.c +++ b/drivers/media/video/tvp5150.c | |||
| @@ -801,7 +801,6 @@ static int tvp5150_detach_client(struct i2c_client *client) | |||
| 801 | 801 | ||
| 802 | static struct i2c_driver driver = { | 802 | static struct i2c_driver driver = { |
| 803 | .driver = { | 803 | .driver = { |
| 804 | .owner = THIS_MODULE, | ||
| 805 | .name = "tvp5150", | 804 | .name = "tvp5150", |
| 806 | }, | 805 | }, |
| 807 | 806 | ||
diff --git a/drivers/media/video/vpx3220.c b/drivers/media/video/vpx3220.c index b85b5981fb8d..8dcee8b60e21 100644 --- a/drivers/media/video/vpx3220.c +++ b/drivers/media/video/vpx3220.c | |||
| @@ -722,7 +722,6 @@ vpx3220_attach_adapter (struct i2c_adapter *adapter) | |||
| 722 | 722 | ||
| 723 | static struct i2c_driver vpx3220_i2c_driver = { | 723 | static struct i2c_driver vpx3220_i2c_driver = { |
| 724 | .driver = { | 724 | .driver = { |
| 725 | .owner = THIS_MODULE, | ||
| 726 | .name = "vpx3220", | 725 | .name = "vpx3220", |
| 727 | }, | 726 | }, |
| 728 | 727 | ||
diff --git a/drivers/media/video/wm8775.c b/drivers/media/video/wm8775.c index 22875f1fa1ab..bbfd55cd9948 100644 --- a/drivers/media/video/wm8775.c +++ b/drivers/media/video/wm8775.c | |||
| @@ -233,7 +233,6 @@ static int wm8775_detach(struct i2c_client *client) | |||
| 233 | /* i2c implementation */ | 233 | /* i2c implementation */ |
| 234 | static struct i2c_driver i2c_driver = { | 234 | static struct i2c_driver i2c_driver = { |
| 235 | .driver = { | 235 | .driver = { |
| 236 | .owner = THIS_MODULE, | ||
| 237 | .name = "wm8775", | 236 | .name = "wm8775", |
| 238 | }, | 237 | }, |
| 239 | 238 | ||
diff --git a/drivers/video/matrox/matroxfb_maven.c b/drivers/video/matrox/matroxfb_maven.c index f6fdb69af0b4..255875378a3f 100644 --- a/drivers/video/matrox/matroxfb_maven.c +++ b/drivers/video/matrox/matroxfb_maven.c | |||
| @@ -1294,7 +1294,6 @@ static int maven_command(struct i2c_client* client, unsigned int cmd, void* arg) | |||
| 1294 | 1294 | ||
| 1295 | static struct i2c_driver maven_driver={ | 1295 | static struct i2c_driver maven_driver={ |
| 1296 | .driver = { | 1296 | .driver = { |
| 1297 | .owner = THIS_MODULE, | ||
| 1298 | .name = "maven", | 1297 | .name = "maven", |
| 1299 | }, | 1298 | }, |
| 1300 | .id = I2C_DRIVERID_MGATVO, | 1299 | .id = I2C_DRIVERID_MGATVO, |
diff --git a/sound/oss/dmasound/dac3550a.c b/sound/oss/dmasound/dac3550a.c index 835e0cfc3bf3..7360d8954d60 100644 --- a/sound/oss/dmasound/dac3550a.c +++ b/sound/oss/dmasound/dac3550a.c | |||
| @@ -42,7 +42,6 @@ static int daca_detach_client(struct i2c_client *client); | |||
| 42 | 42 | ||
| 43 | struct i2c_driver daca_driver = { | 43 | struct i2c_driver daca_driver = { |
| 44 | .driver = { | 44 | .driver = { |
| 45 | .owner = THIS_MODULE, | ||
| 46 | .name = "DAC3550A driver V " DACA_VERSION, | 45 | .name = "DAC3550A driver V " DACA_VERSION, |
| 47 | }, | 46 | }, |
| 48 | .id = I2C_DRIVERID_DACA, | 47 | .id = I2C_DRIVERID_DACA, |
diff --git a/sound/oss/dmasound/tas_common.c b/sound/oss/dmasound/tas_common.c index bd6910af286c..81315996c0f1 100644 --- a/sound/oss/dmasound/tas_common.c +++ b/sound/oss/dmasound/tas_common.c | |||
| @@ -48,7 +48,6 @@ static int tas_detach_client(struct i2c_client *); | |||
| 48 | 48 | ||
| 49 | struct i2c_driver tas_driver = { | 49 | struct i2c_driver tas_driver = { |
| 50 | .driver = { | 50 | .driver = { |
| 51 | .owner = THIS_MODULE, | ||
| 52 | .name = "tas", | 51 | .name = "tas", |
| 53 | }, | 52 | }, |
| 54 | .attach_adapter = tas_attach_adapter, | 53 | .attach_adapter = tas_attach_adapter, |
diff --git a/sound/ppc/keywest.c b/sound/ppc/keywest.c index d532924b5a5a..6058c2dd1b7f 100644 --- a/sound/ppc/keywest.c +++ b/sound/ppc/keywest.c | |||
| @@ -42,7 +42,6 @@ static int keywest_detach_client(struct i2c_client *client); | |||
| 42 | 42 | ||
| 43 | struct i2c_driver keywest_driver = { | 43 | struct i2c_driver keywest_driver = { |
| 44 | .driver = { | 44 | .driver = { |
| 45 | .owner = THIS_MODULE, | ||
| 46 | .name = "PMac Keywest Audio", | 45 | .name = "PMac Keywest Audio", |
| 47 | }, | 46 | }, |
| 48 | .id = I2C_DRIVERID_KEYWEST, | 47 | .id = I2C_DRIVERID_KEYWEST, |
