diff options
Diffstat (limited to 'drivers/ieee1394/nodemgr.h')
-rw-r--r-- | drivers/ieee1394/nodemgr.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/ieee1394/nodemgr.h b/drivers/ieee1394/nodemgr.h index 0e1e7d930783..e25cbadb8be0 100644 --- a/drivers/ieee1394/nodemgr.h +++ b/drivers/ieee1394/nodemgr.h | |||
@@ -144,7 +144,12 @@ struct hpsb_protocol_driver { | |||
144 | struct device_driver driver; | 144 | struct device_driver driver; |
145 | }; | 145 | }; |
146 | 146 | ||
147 | int hpsb_register_protocol(struct hpsb_protocol_driver *driver); | 147 | int __hpsb_register_protocol(struct hpsb_protocol_driver *, struct module *); |
148 | static inline int hpsb_register_protocol(struct hpsb_protocol_driver *driver) | ||
149 | { | ||
150 | return __hpsb_register_protocol(driver, THIS_MODULE); | ||
151 | } | ||
152 | |||
148 | void hpsb_unregister_protocol(struct hpsb_protocol_driver *driver); | 153 | void hpsb_unregister_protocol(struct hpsb_protocol_driver *driver); |
149 | 154 | ||
150 | static inline int hpsb_node_entry_valid(struct node_entry *ne) | 155 | static inline int hpsb_node_entry_valid(struct node_entry *ne) |