diff options
author | Andrzej Pietrasiewicz <[email protected]> | 2012-03-12 12:55:42 +0100 |
---|---|---|
committer | Felipe Balbi <[email protected]> | 2012-04-10 19:11:47 +0300 |
commit | 8545e6031a719675da9f3d21f1c8ce143dac7fe5 (patch) | |
tree | 9f0a8315f61e923749a5448389320e1ef722ae21 | |
parent | e2190a97c6d493eef1f180b9dadfd5ffd4706051 (diff) |
usb: gadget: FunctionFS: make module init & exit __init & __exit
make module init & exit __init & __exit
Signed-off-by: Andrzej Pietrasiewicz <[email protected]>
Signed-off-by: Kyungmin Park <[email protected]>
Acked-by: Michal Nazarewicz <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
-rw-r--r-- | drivers/usb/gadget/g_ffs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/g_ffs.c b/drivers/usb/gadget/g_ffs.c index 331cd6729d3c..a85eaf40b948 100644 --- a/drivers/usb/gadget/g_ffs.c +++ b/drivers/usb/gadget/g_ffs.c @@ -161,7 +161,7 @@ static struct usb_composite_driver gfs_driver = { static struct ffs_data *gfs_ffs_data; static unsigned long gfs_registered; -static int gfs_init(void) +static int __init gfs_init(void) { ENTER(); @@ -169,7 +169,7 @@ static int gfs_init(void) } module_init(gfs_init); -static void gfs_exit(void) +static void __exit gfs_exit(void) { ENTER(); |