Skip to content

Commit

Permalink
USB: serial: ipw.c: mark {__init|__exit} for usb_ipw_{init|exit}
Browse files Browse the repository at this point in the history
mark {__init|__exit} for usb_ipw_{init|exit} ()

Signed-off-by: Qinghuang Feng <qhfeng.kernel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Qinghuang Feng authored and Greg Kroah-Hartman committed Jan 7, 2009
1 parent 1c53e6c commit 5e5b0e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/usb/serial/ipw.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ static struct usb_serial_driver ipw_device = {



static int usb_ipw_init(void)
static int __init usb_ipw_init(void)
{
int retval;

Expand All @@ -490,7 +490,7 @@ static int usb_ipw_init(void)
return 0;
}

static void usb_ipw_exit(void)
static void __exit usb_ipw_exit(void)
{
usb_deregister(&usb_ipw_driver);
usb_serial_deregister(&ipw_device);
Expand Down

0 comments on commit 5e5b0e5

Please sign in to comment.