2014-04-20 07:22:33

by Fabian Frédérick

[permalink] [raw]
Subject: [PATCH 1/1] FS: Use device_initcall

Replace deprecated __initcall

Cc: Alexander Viro <[email protected]>
Cc: Andrew Morton <[email protected]>
Signed-off-by: Fabian Frederick <[email protected]>
---
fs/aio.c | 2 +-
fs/compat_ioctl.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/aio.c b/fs/aio.c
index 12a3de0e..6279d88 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -222,7 +222,7 @@ static int __init aio_setup(void)

return 0;
}
-__initcall(aio_setup);
+device_initcall(aio_setup);

static void put_aio_ring_file(struct kioctx *ctx)
{
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c
index e822890..3bfcb0e 100644
--- a/fs/compat_ioctl.c
+++ b/fs/compat_ioctl.c
@@ -1633,4 +1633,4 @@ static int __init init_sys32_ioctl(void)
init_sys32_ioctl_cmp, NULL);
return 0;
}
-__initcall(init_sys32_ioctl);
+device_initcall(init_sys32_ioctl);
--
1.8.3.2