treewide: replace GPLv2 long form headers with SPDX header
[coreboot.git] / src / mainboard / asrock / b75pro3-m / mainboard.c
blob53ca822c093b58fa58b468adb26e24de5367487e
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>
6 #include <southbridge/intel/bd82x6x/pch.h>
8 static void mainboard_enable(struct device *dev)
10 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_NONE,
11 GMA_INT15_PANEL_FIT_DEFAULT,
12 GMA_INT15_BOOT_DISPLAY_CRT, 0);
15 struct chip_operations mainboard_ops = {
16 .enable_dev = mainboard_enable,