mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
ANDROID: sdcardfs: remove unneeded __init and __exit
Change-Id: I2a2d45d52f891332174c3000e8681c5167c1564f
This commit is contained in:
committed by
Dmitry Shmidt
parent
04c3dee9df
commit
cfdb66543e
@@ -392,7 +392,7 @@ static struct configfs_subsystem sdcardfs_packages_subsys = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init configfs_sdcardfs_init(void)
|
||||
static int configfs_sdcardfs_init(void)
|
||||
{
|
||||
int ret;
|
||||
struct configfs_subsystem *subsys = &sdcardfs_packages_subsys;
|
||||
@@ -408,7 +408,7 @@ static int __init configfs_sdcardfs_init(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void __exit configfs_sdcardfs_exit(void)
|
||||
static void configfs_sdcardfs_exit(void)
|
||||
{
|
||||
configfs_unregister_subsystem(&sdcardfs_packages_subsys);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user