board: qemu-virt: Remove stub init functions

These do not accomplish anything, and with the new initcall logic,
can be harmlessly removed.

Signed-off-by: Igor Belwon <igor.belwon@mentallysanemainliners.org>
This commit is contained in:
Igor Belwon
2025-10-01 19:00:33 +02:00
committed by BotchedRPR
parent 7993348878
commit e53c434ba2

View File

@@ -38,22 +38,10 @@ int virt_init(void)
return 0;
}
int virt_late_init(void)
{
return 0;
}
int virt_drv(void)
{
return 0;
}
struct board_data board_ops = {
.name = "qemu-virt",
.ops = {
.early_init = virt_init,
.drivers_init = virt_drv,
.late_init = virt_late_init,
},
.quirks = 0
};