diff options
author | Prasun Gera <prasun.gera@gmail.com> | 2019-09-16 04:16:49 -0400 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-03-04 16:05:33 +0000 |
commit | b5b5490bbdc18f44854608baf5c97137c8724656 (patch) | |
tree | 1ffbbc0e5a9d670fe34b88325c5a9a9f69d8003c | |
parent | 9364afd3c05da261a097fe6821c913bacc88ea44 (diff) |
src/mainboard/lenovo/t530/Kconfig: Fix PCI device id for the iGPU
Both T530 and W530 share the same PCI device id of 0166 for the iGPU.
Change-Id: Idce809e3820a653144db424aff1c55b70c4c693a
Signed-off-by: Prasun Gera <prasun.gera@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35431
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Peter Lemenkov <lemenkov@gmail.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r-- | src/mainboard/lenovo/t530/Kconfig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/t530/Kconfig b/src/mainboard/lenovo/t530/Kconfig index d1ba6a8fd0..04b752804c 100644 --- a/src/mainboard/lenovo/t530/Kconfig +++ b/src/mainboard/lenovo/t530/Kconfig @@ -60,7 +60,10 @@ config DRAM_RESET_GATE_GPIO config VGA_BIOS_FILE string - default "pci8086,0106.rom" if BOARD_LENOVO_T530 - default "pci8086,0166.rom" if BOARD_LENOVO_W530 + default "pci8086,0166.rom" + +config VGA_BIOS_ID + string + default "8086,0166" endif |