Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e0daff3 authored by David S. Miller's avatar David S. Miller
Browse files

sparc64: Fix bootup crash on sun4v.



The DS driver registers as a subsys_initcall() but this can be too
early, in particular this risks registering before we've had a chance
to allocate and setup module_kset in kernel/params.c which is
performed also as a subsyts_initcall().

Register DS using device_initcall() insteal.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Cc: stable@vger.kernel.org
parent 4166fb64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1264,4 +1264,4 @@ static int __init ds_init(void)
	return vio_register_driver(&ds_driver);
}

subsys_initcall(ds_init);
fs_initcall(ds_init);