mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2026-08-15 05:18:32 +00:00
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:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user