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 <igor.belwon@mentallysanemainliners.org>
This commit is contained in:
Igor Belwon
2025-10-01 19:17:26 +02:00
committed by BotchedRPR
parent e91301ee42
commit 4cca1ce703

View File

@@ -6,12 +6,6 @@
#include <drivers/framework.h>
#include <lib/simplefb.h>
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
};