* [lm-sensors] [PATCH] i2c: Drop outdated probe/remove code in i2c-isa
@ 2006-02-08 19:38 Jean Delvare
0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2006-02-08 19:38 UTC (permalink / raw)
To: lm-sensors
Hi Greg,
I guess this should be pushed to Linus before 2.6.16?
Thanks.
* * * * *
Probe and remove methods are now defined at bus level. No more need to
redefine them at driver level in i2c-isa.
This lets us get rid of these annoying messages:
Driver 'it87-isa' needs updating - please use bus_type methods
Thanks to Nicolas Mailhot for reporting the problem and testing the fix.
Signed-off-by: Jean Delvare <khali at linux-fr.org>
---
drivers/i2c/busses/i2c-isa.c | 12 ------------
1 file changed, 12 deletions(-)
--- linux-2.6.16-rc2.orig/drivers/i2c/busses/i2c-isa.c 2006-02-07 09:15:08.000000000 +0100
+++ linux-2.6.16-rc2/drivers/i2c/busses/i2c-isa.c 2006-02-07 18:22:46.000000000 +0100
@@ -72,16 +72,6 @@
}
static DEVICE_ATTR(name, S_IRUGO, show_adapter_name, NULL);
-static int i2c_isa_device_probe(struct device *dev)
-{
- return -ENODEV;
-}
-
-static int i2c_isa_device_remove(struct device *dev)
-{
- return 0;
-}
-
/* We implement an interface which resembles i2c_{add,del}_driver,
but for i2c-isa drivers. We don't have to remember and handle lists
@@ -93,8 +83,6 @@
/* Add the driver to the list of i2c drivers in the driver core */
driver->driver.bus = &i2c_bus_type;
- driver->driver.probe = i2c_isa_device_probe;
- driver->driver.remove = i2c_isa_device_remove;
res = driver_register(&driver->driver);
if (res)
return res;
--
Jean Delvare
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-02-08 19:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-08 19:38 [lm-sensors] [PATCH] i2c: Drop outdated probe/remove code in i2c-isa Jean Delvare
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.