summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/haswell/mainboard.c
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-07-23 21:28:52 +0200
committerFelix Singer <felixsinger@posteo.net>2022-07-24 22:24:24 +0000
commitb5bdd707583a5731722f848cecae75753decf9b9 (patch)
tree661d063bf3a3f5c8fbb55f97c452905e1c9508b1 /src/mainboard/lenovo/haswell/mainboard.c
parent104b7db894237ce5828706f76b2d2fd1434efc4d (diff)
mb/lenovo/haswell: Make INT15 support T440p specific
In preparation to CB:63514, make the INT15 support specific for the T440p variant since the W541 doesn't support it currently. Change-Id: I8dfcc061e1b8a831f75bf9a8035770cb678a85d4 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/66106 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo/haswell/mainboard.c')
-rw-r--r--src/mainboard/lenovo/haswell/mainboard.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mainboard/lenovo/haswell/mainboard.c b/src/mainboard/lenovo/haswell/mainboard.c
deleted file mode 100644
index e9ff4f5cbe..0000000000
--- a/src/mainboard/lenovo/haswell/mainboard.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <device/device.h>
-#include <drivers/intel/gma/int15.h>
-#include <ec/lenovo/h8/h8.h>
-
-static void mainboard_enable(struct device *dev)
-{
- install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_EDP,
- GMA_INT15_PANEL_FIT_DEFAULT,
- GMA_INT15_BOOT_DISPLAY_DEFAULT, 0);
-}
-
-struct chip_operations mainboard_ops = {
- .enable_dev = mainboard_enable,
-};