mb/asrock: Add Asrock Industrial IMB-1222 motherboard
[coreboot.git] / src / mainboard / bostentech / gbyt4 / mainboard.c
blob100cfa514ef6554626809bbad4ff26f7a40a03a6
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
4 #include <soc/int15.h>
6 static void mainboard_enable(struct device *dev)
8 /* Install custom int15 handler for VGA OPROM */
9 if (CONFIG(VGA_ROM_RUN))
10 install_baytrail_vga_int15_handler();
13 struct chip_operations mainboard_ops = {
14 .enable_dev = mainboard_enable,