aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2005-12-06 15:33:15 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2006-01-05 22:16:25 -0800
commit2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33 (patch)
tree04c095d45dfa892b7710e338724a1ac4f1da7cba /drivers/hwmon
parentde59cf9ed44f64991e52a9de6094729537f0420c (diff)
downloadlinux-2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33.tar.gz
[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>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/adm1021.c1
-rw-r--r--drivers/hwmon/adm1025.c1
-rw-r--r--drivers/hwmon/adm1026.c1
-rw-r--r--drivers/hwmon/adm1031.c1
-rw-r--r--drivers/hwmon/adm9240.c1
-rw-r--r--drivers/hwmon/asb100.c1
-rw-r--r--drivers/hwmon/atxp1.c1
-rw-r--r--drivers/hwmon/ds1621.c1
-rw-r--r--drivers/hwmon/fscher.c1
-rw-r--r--drivers/hwmon/fscpos.c1
-rw-r--r--drivers/hwmon/gl518sm.c1
-rw-r--r--drivers/hwmon/gl520sm.c1
-rw-r--r--drivers/hwmon/it87.c2
-rw-r--r--drivers/hwmon/lm63.c1
-rw-r--r--drivers/hwmon/lm75.c1
-rw-r--r--drivers/hwmon/lm77.c1
-rw-r--r--drivers/hwmon/lm78.c2
-rw-r--r--drivers/hwmon/lm80.c1
-rw-r--r--drivers/hwmon/lm83.c1
-rw-r--r--drivers/hwmon/lm85.c1
-rw-r--r--drivers/hwmon/lm87.c1
-rw-r--r--drivers/hwmon/lm90.c1
-rw-r--r--drivers/hwmon/lm92.c1
-rw-r--r--drivers/hwmon/max1619.c1
-rw-r--r--drivers/hwmon/pc87360.c1
-rw-r--r--drivers/hwmon/sis5595.c1
-rw-r--r--drivers/hwmon/smsc47b397.c1
-rw-r--r--drivers/hwmon/smsc47m1.c1
-rw-r--r--drivers/hwmon/via686a.c1
-rw-r--r--drivers/hwmon/vt8231.c1
-rw-r--r--drivers/hwmon/w83627ehf.c1
-rw-r--r--drivers/hwmon/w83627hf.c1
-rw-r--r--drivers/hwmon/w83781d.c2
-rw-r--r--drivers/hwmon/w83792d.c1
-rw-r--r--drivers/hwmon/w83l785ts.c1
35 files changed, 0 insertions, 38 deletions
diff --git a/drivers/hwmon/adm1021.c b/drivers/hwmon/adm1021.c
index 679cb92ccaf4b..665612729cb9b 100644
--- a/drivers/hwmon/adm1021.c
+++ b/drivers/hwmon/adm1021.c
@@ -127,7 +127,6 @@ static int read_only;
/* This is the driver that will be inserted */
static struct i2c_driver adm1021_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "adm1021",
},
.id = I2C_DRIVERID_ADM1021,
diff --git a/drivers/hwmon/adm1025.c b/drivers/hwmon/adm1025.c
index 3c70622c8cb1b..9331c56d2ba6d 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);
static struct i2c_driver adm1025_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "adm1025",
},
.id = I2C_DRIVERID_ADM1025,
diff --git a/drivers/hwmon/adm1026.c b/drivers/hwmon/adm1026.c
index 92fac344d05b3..fefe6e74fd02d 100644
--- a/drivers/hwmon/adm1026.c
+++ b/drivers/hwmon/adm1026.c
@@ -309,7 +309,6 @@ static void adm1026_init_client(struct i2c_client *client);
static struct i2c_driver adm1026_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "adm1026",
},
.attach_adapter = adm1026_attach_adapter,
diff --git a/drivers/hwmon/adm1031.c b/drivers/hwmon/adm1031.c
index e42d75e28804f..d063979660814 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);
/* This is the driver that will be inserted */
static struct i2c_driver adm1031_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "adm1031",
},
.attach_adapter = adm1031_attach_adapter,
diff --git a/drivers/hwmon/adm9240.c b/drivers/hwmon/adm9240.c
index e60309e9726c6..5ddc22fea4a37 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);
/* driver data */
static struct i2c_driver adm9240_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "adm9240",
},
.id = I2C_DRIVERID_ADM9240,
diff --git a/drivers/hwmon/asb100.c b/drivers/hwmon/asb100.c
index 3068de0dc7285..ae9de63cf2e06 100644
--- a/drivers/hwmon/asb100.c
+++ b/drivers/hwmon/asb100.c
@@ -218,7 +218,6 @@ static void asb100_init_client(struct i2c_client *client);
static struct i2c_driver asb100_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "asb100",
},
.id = I2C_DRIVERID_ASB100,
diff --git a/drivers/hwmon/atxp1.c b/drivers/hwmon/atxp1.c
index ed152d9396433..b0c490073c8e1 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);
static struct i2c_driver atxp1_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "atxp1",
},
.attach_adapter = atxp1_attach_adapter,
diff --git a/drivers/hwmon/ds1621.c b/drivers/hwmon/ds1621.c
index 860094005c14b..203f9c7abb20a 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);
/* This is the driver that will be inserted */
static struct i2c_driver ds1621_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "ds1621",
},
.id = I2C_DRIVERID_DS1621,
diff --git a/drivers/hwmon/fscher.c b/drivers/hwmon/fscher.c
index 982fff42ce94b..25409181d1eb8 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);
static struct i2c_driver fscher_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "fscher",
},
.id = I2C_DRIVERID_FSCHER,
diff --git a/drivers/hwmon/fscpos.c b/drivers/hwmon/fscpos.c
index 971146b92cc0a..6d0146b570201 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);
*/
static struct i2c_driver fscpos_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "fscpos",
},
.id = I2C_DRIVERID_FSCPOS,
diff --git a/drivers/hwmon/gl518sm.c b/drivers/hwmon/gl518sm.c
index 9c5ca1f467a98..9e685e3a3bc97 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);
/* This is the driver that will be inserted */
static struct i2c_driver gl518_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "gl518sm",
},
.id = I2C_DRIVERID_GL518,
diff --git a/drivers/hwmon/gl520sm.c b/drivers/hwmon/gl520sm.c
index a9a724a6f38ae..baee60e44b521 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);
/* Driver data */
static struct i2c_driver gl520_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "gl520sm",
},
.id = I2C_DRIVERID_GL520,
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
index 24d520bcc0b69..29b74a880eae0 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);
static struct i2c_driver it87_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "it87",
},
.id = I2C_DRIVERID_IT87,
@@ -245,7 +244,6 @@ static struct i2c_driver it87_driver = {
static struct i2c_driver it87_isa_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "it87-isa",
},
.attach_adapter = it87_isa_attach_adapter,
diff --git a/drivers/hwmon/lm63.c b/drivers/hwmon/lm63.c
index 35baae742cff6..6b1aa7ef552e2 100644
--- a/drivers/hwmon/lm63.c
+++ b/drivers/hwmon/lm63.c
@@ -140,7 +140,6 @@ static void lm63_init_client(struct i2c_client *client);
static struct i2c_driver lm63_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm63",
},
.attach_adapter = lm63_attach_adapter,
diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
index db35fbf4d2504..74ca2c8c61c3a 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);
/* This is the driver that will be inserted */
static struct i2c_driver lm75_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm75",
},
.id = I2C_DRIVERID_LM75,
diff --git a/drivers/hwmon/lm77.c b/drivers/hwmon/lm77.c
index 177072056d7da..a2f420d01fb71 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);
/* This is the driver that will be inserted */
static struct i2c_driver lm77_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm77",
},
.attach_adapter = lm77_attach_adapter,
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c
index 3af5b06995e01..e404001e20daa 100644
--- a/drivers/hwmon/lm78.c
+++ b/drivers/hwmon/lm78.c
@@ -165,7 +165,6 @@ static void lm78_init_client(struct i2c_client *client);
static struct i2c_driver lm78_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm78",
},
.id = I2C_DRIVERID_LM78,
@@ -175,7 +174,6 @@ static struct i2c_driver lm78_driver = {
static struct i2c_driver lm78_isa_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm78-isa",
},
.attach_adapter = lm78_isa_attach_adapter,
diff --git a/drivers/hwmon/lm80.c b/drivers/hwmon/lm80.c
index 1dc118f411a79..c9a7cdea7bd72 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);
static struct i2c_driver lm80_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm80",
},
.id = I2C_DRIVERID_LM80,
diff --git a/drivers/hwmon/lm83.c b/drivers/hwmon/lm83.c
index 1c1744f699fbb..26dfa9e216c28 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);
static struct i2c_driver lm83_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm83",
},
.id = I2C_DRIVERID_LM83,
diff --git a/drivers/hwmon/lm85.c b/drivers/hwmon/lm85.c
index b537c18c7a12b..7389a0127547c 100644
--- a/drivers/hwmon/lm85.c
+++ b/drivers/hwmon/lm85.c
@@ -381,7 +381,6 @@ static void lm85_init_client(struct i2c_client *client);
static struct i2c_driver lm85_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm85",
},
.id = I2C_DRIVERID_LM85,
diff --git a/drivers/hwmon/lm87.c b/drivers/hwmon/lm87.c
index 3152c006ce06a..6ba34c302d8d3 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);
static struct i2c_driver lm87_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm87",
},
.id = I2C_DRIVERID_LM87,
diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c
index ff7ba1e1bcc7a..5679464447cc0 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);
static struct i2c_driver lm90_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm90",
},
.id = I2C_DRIVERID_LM90,
diff --git a/drivers/hwmon/lm92.c b/drivers/hwmon/lm92.c
index b4e4a8409d014..b0c4cb730a7e1 100644
--- a/drivers/hwmon/lm92.c
+++ b/drivers/hwmon/lm92.c
@@ -411,7 +411,6 @@ static int lm92_detach_client(struct i2c_client *client)
static struct i2c_driver lm92_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "lm92",
},
.id = I2C_DRIVERID_LM92,
diff --git a/drivers/hwmon/max1619.c b/drivers/hwmon/max1619.c
index 1a50b13a62ae4..3abe330b22ce1 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);
static struct i2c_driver max1619_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "max1619",
},
.attach_adapter = max1619_attach_adapter,
diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c
index 5469489c758a1..f161e88e3bb67 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);
static struct i2c_driver pc87360_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "pc87360",
},
.attach_adapter = pc87360_detect,
diff --git a/drivers/hwmon/sis5595.c b/drivers/hwmon/sis5595.c
index 9f44b93f3261c..8be5189d9bd9e 100644
--- a/drivers/hwmon/sis5595.c
+++ b/drivers/hwmon/sis5595.c
@@ -199,7 +199,6 @@ static void sis5595_init_client(struct i2c_client *client);
static struct i2c_driver sis5595_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "sis5595",
},
.attach_adapter = sis5595_detect,
diff --git a/drivers/hwmon/smsc47b397.c b/drivers/hwmon/smsc47b397.c
index 02e5d55a2e2d1..8663bbbe97f5a 100644
--- a/drivers/hwmon/smsc47b397.c
+++ b/drivers/hwmon/smsc47b397.c
@@ -227,7 +227,6 @@ static int smsc47b397_detect(struct i2c_adapter *adapter);
static struct i2c_driver smsc47b397_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "smsc47b397",
},
.attach_adapter = smsc47b397_detect,
diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c
index b3051ad7b926e..d1e3ec0fe4dfa 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,
static struct i2c_driver smsc47m1_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "smsc47m1",
},
.attach_adapter = smsc47m1_detect,
diff --git a/drivers/hwmon/via686a.c b/drivers/hwmon/via686a.c
index db75fbccfb623..cb01848729b5e 100644
--- a/drivers/hwmon/via686a.c
+++ b/drivers/hwmon/via686a.c
@@ -573,7 +573,6 @@ static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
smbus_driver and isa_driver, and clients could be of either kind */
static struct i2c_driver via686a_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "via686a",
},
.attach_adapter = via686a_detect,
diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c
index c2eb54b520739..d00a726d0239a 100644
--- a/drivers/hwmon/vt8231.c
+++ b/drivers/hwmon/vt8231.c
@@ -586,7 +586,6 @@ static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
static struct i2c_driver vt8231_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "vt8231",
},
.attach_adapter = vt8231_detect,
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c
index 94538fb3ef1fb..12d79f5e4900c 100644
--- a/drivers/hwmon/w83627ehf.c
+++ b/drivers/hwmon/w83627ehf.c
@@ -786,7 +786,6 @@ static int w83627ehf_detach_client(struct i2c_client *client)
static struct i2c_driver w83627ehf_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "w83627ehf",
},
.attach_adapter = w83627ehf_detect,
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c
index 2ffb84f9c6b71..7ea441d4da63e 100644
--- a/drivers/hwmon/w83627hf.c
+++ b/drivers/hwmon/w83627hf.c
@@ -333,7 +333,6 @@ static void w83627hf_init_client(struct i2c_client *client);
static struct i2c_driver w83627hf_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "w83627hf",
},
.attach_adapter = w83627hf_detect,
diff --git a/drivers/hwmon/w83781d.c b/drivers/hwmon/w83781d.c
index fd1a59c536302..557114872f3c9 100644
--- a/drivers/hwmon/w83781d.c
+++ b/drivers/hwmon/w83781d.c
@@ -270,7 +270,6 @@ static void w83781d_init_client(struct i2c_client *client);
static struct i2c_driver w83781d_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "w83781d",
},
.id = I2C_DRIVERID_W83781D,
@@ -280,7 +279,6 @@ static struct i2c_driver w83781d_driver = {
static struct i2c_driver w83781d_isa_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "w83781d-isa",
},
.attach_adapter = w83781d_isa_attach_adapter,
diff --git a/drivers/hwmon/w83792d.c b/drivers/hwmon/w83792d.c
index 9018445ac1bfd..ff1c9f0abf93c 100644
--- a/drivers/hwmon/w83792d.c
+++ b/drivers/hwmon/w83792d.c
@@ -318,7 +318,6 @@ static void w83792d_init_client(struct i2c_client *client);
static struct i2c_driver w83792d_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "w83792d",
},
.attach_adapter = w83792d_attach_adapter,
diff --git a/drivers/hwmon/w83l785ts.c b/drivers/hwmon/w83l785ts.c
index fc9f202f29676..f66c0cfdeda7d 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);
static struct i2c_driver w83l785ts_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "w83l785ts",
},
.id = I2C_DRIVERID_W83L785TS,