binderfs: remove separate device_initcall()
binderfs should not have a separate device_initcall(). When a kernel is compiled with CONFIG_ANDROID_BINDERFS register the filesystem alongside CONFIG_ANDROID_IPC. This use-case is especially sensible when users specify CONFIG_ANDROID_IPC=y, CONFIG_ANDROID_BINDERFS=y and ANDROID_BINDER_DEVICES="". When CONFIG_ANDROID_BINDERFS=n then this always succeeds so there's no regression potential for legacy workloads. Signed-off-by: Christian Brauner <christian@brauner.io> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

gecommit door
Greg Kroah-Hartman

bovenliggende
32a6637448
commit
5b9633af29
@@ -550,7 +550,7 @@ static struct file_system_type binder_fs_type = {
|
||||
.fs_flags = FS_USERNS_MOUNT,
|
||||
};
|
||||
|
||||
static int __init init_binderfs(void)
|
||||
int __init init_binderfs(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@@ -568,5 +568,3 @@ static int __init init_binderfs(void)
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
device_initcall(init_binderfs);
|
||||
|
Verwijs in nieuw issue
Block a user