mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 13:20:50 +07:00
[ARM] 5505/1: serial amba-pl011: move to arch_initcall for earlier console
Signed-off-by: Alessandro Rubini <rubini@unipv.it>" Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
5a9d25150c
commit
4dd9e742df
@ -845,7 +845,11 @@ static void __exit pl011_exit(void)
|
|||||||
uart_unregister_driver(&amba_reg);
|
uart_unregister_driver(&amba_reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(pl011_init);
|
/*
|
||||||
|
* While this can be a module, if builtin it's most likely the console
|
||||||
|
* So let's leave module_exit but move module_init to an earlier place
|
||||||
|
*/
|
||||||
|
arch_initcall(pl011_init);
|
||||||
module_exit(pl011_exit);
|
module_exit(pl011_exit);
|
||||||
|
|
||||||
MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
|
MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
|
||||||
|
Loading…
Reference in New Issue
Block a user