mainboard/[g-p]*: Remove copyright notices
[coreboot.git] / src / mainboard / lenovo / l520 / mainboard.c
blobb2cb5521ffefd27d89b42f57e8f7a3a17eca3d75
1 /*
2 * This file is part of the coreboot project.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; version 2 of
8 * the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <device/device.h>
17 #include <drivers/intel/gma/int15.h>
18 #include <ec/lenovo/h8/h8.h>
20 static void mainboard_enable(struct device *dev)
22 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS,
23 GMA_INT15_PANEL_FIT_DEFAULT,
24 GMA_INT15_BOOT_DISPLAY_DEFAULT, 0);
27 struct chip_operations mainboard_ops = {
28 .enable_dev = mainboard_enable,