aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-11-20 19:07:30 +0100
committerNico Huber <nico.h@gmx.de>2020-11-22 14:25:30 +0000
commit53ed3e501f4744b4dd42c1418819a5546fe4f0cf (patch)
treeeff7ff50eccc79bd22a64ab2c489e7590a6a27bd /src/southbridge
parentea3417b5eb7de9d1c0a41724c0281fa7d30a97f8 (diff)
sb/intel/lynxpoint/smbus.c: Remove invalid PCI IDs
These two IDs are for Cougar Point and Panther Point, the previous generation of Platform Controller Hubs. So, drop their device IDs. Change-Id: I27a58720f32b1cc3eb68c0af2d6819e16c36b954 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47816 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/intel/lynxpoint/smbus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/lynxpoint/smbus.c b/src/southbridge/intel/lynxpoint/smbus.c
index f616473fb9..2741951a4e 100644
--- a/src/southbridge/intel/lynxpoint/smbus.c
+++ b/src/southbridge/intel/lynxpoint/smbus.c
@@ -80,7 +80,7 @@ static struct device_operations smbus_ops = {
};
static const unsigned short pci_device_ids[] = {
- 0x1c22, 0x1e22, 0x8c22, 0x9c22,
+ 0x8c22, 0x9c22,
0
};