aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/sbp2.c
diff options
context:
space:
mode:
authorBen Collins <ben.collins@ubuntu.com>2006-11-23 13:59:48 -0500
committerStefan Richter <stefanr@s5r6.in-berlin.de>2006-12-07 17:11:55 -0500
commited30c26ee809b060f437fd9f1b3453e1d0375e32 (patch)
tree00daeacae861f1a544ed346d5ce4f26700f8f6ba /drivers/ieee1394/sbp2.c
parent9b7d9c096dd4e4baacc21b2588662bbb56f36c4e (diff)
ieee1394: Consolidate driver registering
This patch consolidates some bookkeeping for driver registering. It closely models what pci_register_driver() does. The main addition is that the owner of the driver is set, so we get a proper symlink for /sys/bus/ieee1394/driver/*/module. Also moves setting of name and bus type into nodemgr. Because of this, we can remove the EXPORT_SYMBOL for ieee1394_bus_type, since it's now only used in ieee1394.ko. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/sbp2.c')
-rw-r--r--drivers/ieee1394/sbp2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c
index ab7059858bbd..ffcd9e41454c 100644
--- a/drivers/ieee1394/sbp2.c
+++ b/drivers/ieee1394/sbp2.c
@@ -259,12 +259,10 @@ static int sbp2_remove(struct device *);
259static int sbp2_update(struct unit_directory *); 259static int sbp2_update(struct unit_directory *);
260 260
261static struct hpsb_protocol_driver sbp2_driver = { 261static struct hpsb_protocol_driver sbp2_driver = {
262 .name = "SBP2 Driver", 262 .name = SBP2_DEVICE_NAME,
263 .id_table = sbp2_id_table, 263 .id_table = sbp2_id_table,
264 .update = sbp2_update, 264 .update = sbp2_update,
265 .driver = { 265 .driver = {
266 .name = SBP2_DEVICE_NAME,
267 .bus = &ieee1394_bus_type,
268 .probe = sbp2_probe, 266 .probe = sbp2_probe,
269 .remove = sbp2_remove, 267 .remove = sbp2_remove,
270 }, 268 },