[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>

authored by Russell King and committed by Greg Kroah-Hartman b6a01e9b ac33bc3d

+2 -2
+2 -2
drivers/zorro/zorro-driver.c
··· 77 /* initialize common driver fields */ 78 drv->driver.name = drv->name; 79 drv->driver.bus = &zorro_bus_type; 80 - drv->driver.probe = zorro_device_probe; 81 82 /* register with core */ 83 count = driver_register(&drv->driver); ··· 131 132 struct bus_type zorro_bus_type = { 133 .name = "zorro", 134 - .match = zorro_bus_match 135 }; 136 137
··· 77 /* initialize common driver fields */ 78 drv->driver.name = drv->name; 79 drv->driver.bus = &zorro_bus_type; 80 81 /* register with core */ 82 count = driver_register(&drv->driver); ··· 132 133 struct bus_type zorro_bus_type = { 134 .name = "zorro", 135 + .match = zorro_bus_match, 136 + .probe = zorro_device_probe, 137 }; 138 139