Subject: [PATCH] ZORRO: Replace deprecated __initcall with equivalent device_initcall. From: Robert P. J. Day ZORRO: Replace deprecated __initcall with equivalent device_initcall. Signed-off-by: Robert P. J. Day Signed-off-by: Geert Uytterhoeven --- drivers/zorro/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/zorro/proc.c +++ b/drivers/zorro/proc.c @@ -158,4 +158,4 @@ static int __init zorro_proc_init(void) return 0; } -__initcall(zorro_proc_init); +device_initcall(zorro_proc_init);