blob: 100cfa514ef6554626809bbad4ff26f7a40a03a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/device.h>
#include <soc/int15.h>
static void mainboard_enable(struct device *dev)
{
/* Install custom int15 handler for VGA OPROM */
if (CONFIG(VGA_ROM_RUN))
install_baytrail_vga_int15_handler();
}
struct chip_operations mainboard_ops = {
.enable_dev = mainboard_enable,
};
|