projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b93bb3
)
staging: usbip: usbip_common.c: rename init and exit functions
author
matt mooney
<mfm@muteddisk.com>
Fri, 20 May 2011 04:37:05 +0000
(21:37 -0700)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Tue, 7 Jun 2011 20:51:26 +0000
(13:51 -0700)
Change the prefix of the __init and __exit functions to usbip_core_ to
correspond with the modules name.
Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/usbip/usbip_common.c
patch
|
blob
|
history
diff --git
a/drivers/staging/usbip/usbip_common.c
b/drivers/staging/usbip/usbip_common.c
index
b204e6f
..
1be4dc1
100644
(file)
--- a/
drivers/staging/usbip/usbip_common.c
+++ b/
drivers/staging/usbip/usbip_common.c
@@
-838,19
+838,19
@@
int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb)
}
EXPORT_SYMBOL_GPL(usbip_recv_xbuff);
-static int __init usbip_co
mmon
_init(void)
+static int __init usbip_co
re
_init(void)
{
pr_info(DRIVER_DESC " v" USBIP_VERSION "\n");
return 0;
}
-static void __exit usbip_co
mmon
_exit(void)
+static void __exit usbip_co
re
_exit(void)
{
return;
}
-module_init(usbip_co
mmon
_init);
-module_exit(usbip_co
mmon
_exit);
+module_init(usbip_co
re
_init);
+module_exit(usbip_co
re
_exit);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);