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

Commit c87ec45d authored by Zhiqiang Tu's avatar Zhiqiang Tu
Browse files

virtio_mmio: Change initcall level to arch_initcall



Virtio clock depends on virtio mmio. Initcall level is changed to
make sure that virtio_mmio is ready before virtio clock probe.

Change-Id: I174d1c85e88d0e124dd07bce57c38d2b5318de52
Signed-off-by: default avatarZhiqiang Tu <ztu@codeaurora.org>
parent 95998d8f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -748,7 +748,7 @@ static void __exit virtio_mmio_exit(void)
	vm_unregister_cmdline_devices();
}

module_init(virtio_mmio_init);
arch_initcall(virtio_mmio_init);
module_exit(virtio_mmio_exit);

MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>");