mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
usb: gadget: FunctionFS: make module init & exit __init & __exit
make module init & exit __init & __exit Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Acked-by: Michal Nazarewicz <mina86@mina86.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
e2190a97c6
commit
8545e6031a
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue