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