kernel/utsname_sysctl.c: replace obsolete __initcall by device_initcall
authorFabian Frederick <fabf@skynet.be>
Wed, 4 Jun 2014 23:11:26 +0000 (16:11 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 4 Jun 2014 23:54:15 +0000 (16:54 -0700)
Also fixes checkpatch warnings on proc_dostring function parameters

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/utsname_sysctl.c

index 4f69f9a5e221a94901bf3b658efbac066c676371..6fbe811c7ad1984287ff1826b340e63d6aae276c 100644 (file)
@@ -51,7 +51,7 @@ static int proc_do_uts_string(ctl_table *table, int write,
        int r;
        memcpy(&uts_table, table, sizeof(uts_table));
        uts_table.data = get_uts(table, write);
-       r = proc_dostring(&uts_table,write,buffer,lenp, ppos);
+       r = proc_dostring(&uts_table, write, buffer, lenp, ppos);
        put_uts(table, write, uts_table.data);
 
        if (write)
@@ -135,4 +135,4 @@ static int __init utsname_sysctl_init(void)
        return 0;
 }
 
-__initcall(utsname_sysctl_init);
+device_initcall(utsname_sysctl_init);