From 4cca1ce7032086bf968bb1d3efed805033b2cdca Mon Sep 17 00:00:00 2001 From: Igor Belwon Date: Wed, 1 Oct 2025 19:17:26 +0200 Subject: [PATCH] board: volla-algiz: Remove stub init functions This does not accomplish anything, and with the new initcall logic, can be harmlessly removed. Signed-off-by: Igor Belwon --- board/volla/board-algiz.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/board/volla/board-algiz.c b/board/volla/board-algiz.c index a3af0f4..1c41cf4 100755 --- a/board/volla/board-algiz.c +++ b/board/volla/board-algiz.c @@ -6,12 +6,6 @@ #include #include -int algiz_init(void) -{ - /* TODO: deal with framebuffer refreshing here */ - return 0; -} - #ifdef CONFIG_SIMPLE_FB static struct video_info algiz_fb = { .format = FB_FORMAT_ARGB8888, @@ -30,17 +24,10 @@ int algiz_drv(void) return 0; } -int algiz_late_init(void) -{ - return 0; -} - struct board_data board_ops = { .name = "volla-quintus", .ops = { - .early_init = algiz_init, .drivers_init = algiz_drv, - .late_init = algiz_late_init, }, .quirks = 0 };