From e53c434ba2f7d3f2cd5f03ca90a299b973bcb032 Mon Sep 17 00:00:00 2001 From: Igor Belwon Date: Wed, 1 Oct 2025 19:00:33 +0200 Subject: [PATCH] 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 --- board/qemu/board-virt.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/board/qemu/board-virt.c b/board/qemu/board-virt.c index f057b64..be91cef 100644 --- a/board/qemu/board-virt.c +++ b/board/qemu/board-virt.c @@ -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 };