diff options
author | Russell King <rmk@arm.linux.org.uk> | 2006-01-05 09:43:43 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-13 14:26:10 -0500 |
commit | b6a01e9bda69aaf22f3a23bafc91c0fb51420a7a (patch) | |
tree | f98effb1d882d8d2648a989e3a6bd72d853bdb16 /drivers/zorro | |
parent | ac33bc3d54936d364c1f979e50f43dfa3f9a13c1 (diff) |
[PATCH] Add zorro_bus_type probe and remove methods
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/zorro')
-rw-r--r-- | drivers/zorro/zorro-driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/zorro/zorro-driver.c b/drivers/zorro/zorro-driver.c index ccba227676f2..fcbee748c592 100644 --- a/drivers/zorro/zorro-driver.c +++ b/drivers/zorro/zorro-driver.c | |||
@@ -77,7 +77,6 @@ int zorro_register_driver(struct zorro_driver *drv) | |||
77 | /* initialize common driver fields */ | 77 | /* initialize common driver fields */ |
78 | drv->driver.name = drv->name; | 78 | drv->driver.name = drv->name; |
79 | drv->driver.bus = &zorro_bus_type; | 79 | drv->driver.bus = &zorro_bus_type; |
80 | drv->driver.probe = zorro_device_probe; | ||
81 | 80 | ||
82 | /* register with core */ | 81 | /* register with core */ |
83 | count = driver_register(&drv->driver); | 82 | count = driver_register(&drv->driver); |
@@ -132,7 +131,8 @@ static int zorro_bus_match(struct device *dev, struct device_driver *drv) | |||
132 | 131 | ||
133 | struct bus_type zorro_bus_type = { | 132 | struct bus_type zorro_bus_type = { |
134 | .name = "zorro", | 133 | .name = "zorro", |
135 | .match = zorro_bus_match | 134 | .match = zorro_bus_match, |
135 | .probe = zorro_device_probe, | ||
136 | }; | 136 | }; |
137 | 137 | ||
138 | 138 | ||