diff options
author | Furquan Shaikh <furquan@chromium.org> | 2017-04-20 17:03:50 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-04-25 18:42:29 +0200 |
commit | c0dbdf4c90b22b9ced22563b4c0de58a2b763c93 (patch) | |
tree | 29ee46b603b794acb1e880065ab9a3cf154e95de /src | |
parent | 79f0741f815faef3bc326e97a93fd13a7652e628 (diff) | |
download | coreboot-c0dbdf4c90b22b9ced22563b4c0de58a2b763c93.tar.xz |
soc/intel/skylake: Fix the PCI ID for SATA controller
Update the PCI ID for SATA controller on Kaby Lake.
Change-Id: Id0b5e0366e04fbac6a57a15407f33f390a2a1856
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/19395
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/skylake/sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/skylake/sata.c b/src/soc/intel/skylake/sata.c index 83fddcfba4..c1104364ff 100644 --- a/src/soc/intel/skylake/sata.c +++ b/src/soc/intel/skylake/sata.c @@ -61,7 +61,7 @@ static struct device_operations sata_ops = { static const unsigned short pci_device_ids[] = { 0x9d03, /* SKL-U Base */ 0x9d07, /* SKL-Y Premium, SKL-U Premium */ - 0xa282, /* KBL */ + 0x282a, /* KBL */ 0 }; |