Commit 27ed5da0 authored by matt mooney's avatar matt mooney Committed by Greg Kroah-Hartman

staging: usbip: stub_main.c: rename init and exit functions

Change the prefix of the __init and __exit functions to usbip_host_ to
correspond with the modules name.
Signed-off-by: default avatarmatt mooney <mfm@muteddisk.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 41e02f01
...@@ -245,7 +245,7 @@ void stub_device_cleanup_urbs(struct stub_device *sdev) ...@@ -245,7 +245,7 @@ void stub_device_cleanup_urbs(struct stub_device *sdev)
} }
} }
static int __init usb_stub_init(void) static int __init usbip_host_init(void)
{ {
int ret; int ret;
...@@ -281,7 +281,7 @@ static int __init usb_stub_init(void) ...@@ -281,7 +281,7 @@ static int __init usb_stub_init(void)
return ret; return ret;
} }
static void __exit usb_stub_exit(void) static void __exit usbip_host_exit(void)
{ {
driver_remove_file(&stub_driver.drvwrap.driver, driver_remove_file(&stub_driver.drvwrap.driver,
&driver_attr_match_busid); &driver_attr_match_busid);
...@@ -295,8 +295,8 @@ static void __exit usb_stub_exit(void) ...@@ -295,8 +295,8 @@ static void __exit usb_stub_exit(void)
kmem_cache_destroy(stub_priv_cache); kmem_cache_destroy(stub_priv_cache);
} }
module_init(usb_stub_init); module_init(usbip_host_init);
module_exit(usb_stub_exit); module_exit(usbip_host_exit);
MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC); MODULE_DESCRIPTION(DRIVER_DESC);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment