// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2018, Bin Meng */ #include #include #include #include #include int board_init(void) { /* * Make sure virtio bus is enumerated so that peripherals * on the virtio bus can be discovered by their drivers */ virtio_init(); return 0; }