diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-11-26 14:28:06 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-06 01:16:21 -0500 |
commit | 8a9947552d43b0d20d5fa23ac0ba435d526be454 (patch) | |
tree | 086844a62f549e488ebeecc196e1d4726a1d4598 /drivers/hwmon/it87.c | |
parent | ff179c8cf5caa17bf3d407edbb5872aa2eee6900 (diff) |
[PATCH] i2c: Drop i2c_driver.flags, 2 of 3
Just about every i2c chip driver sets the I2C_DF_NOTIFY flag, so we
can simply make it the default and drop the flag. If any driver really
doesn't want to be notified when i2c adapters are added, that driver
can simply omit to set .attach_adapter. This approach is also more
robust as it prevents accidental NULL pointer dereferences.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/hwmon/it87.c')
-rw-r--r-- | drivers/hwmon/it87.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index a61f5d00f10a..d5f0d92378c5 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
@@ -237,7 +237,6 @@ static struct i2c_driver it87_driver = { | |||
237 | .owner = THIS_MODULE, | 237 | .owner = THIS_MODULE, |
238 | .name = "it87", | 238 | .name = "it87", |
239 | .id = I2C_DRIVERID_IT87, | 239 | .id = I2C_DRIVERID_IT87, |
240 | .flags = I2C_DF_NOTIFY, | ||
241 | .attach_adapter = it87_attach_adapter, | 240 | .attach_adapter = it87_attach_adapter, |
242 | .detach_client = it87_detach_client, | 241 | .detach_client = it87_detach_client, |
243 | }; | 242 | }; |