treewide: replace GPLv2 long form headers with SPDX header
[coreboot.git] / src / mainboard / asus / maximus_iv_gene-z / mainboard.c
blobfe670efe47b4e36c60058d5adcc78f08b0e48572
1 /* This file is part of the coreboot project. */
2 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #include <device/device.h>
5 #include <drivers/intel/gma/int15.h>
7 static void mainboard_enable(struct device *dev)
9 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_NONE,
10 GMA_INT15_PANEL_FIT_DEFAULT,
11 GMA_INT15_BOOT_DISPLAY_DEFAULT, 0);
14 struct chip_operations mainboard_ops = {
15 .enable_dev = mainboard_enable,