diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-02-16 18:04:05 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-02-17 00:58:21 +0100 |
commit | 56ffa7268cb6b2cb43b6ca2a285bf13a292b4792 (patch) | |
tree | af99067c0cb13292b0e973de461df4516647e514 | |
parent | 7837be6cbb9dfacf66d0981e281c3d9a0a35767d (diff) | |
download | coreboot-56ffa7268cb6b2cb43b6ca2a285bf13a292b4792.tar.xz |
ibexpeak/sata: Add PCI ID from Easynote LM.
Change-Id: I979a40ad3692cd474920f3ee5c6b10c41f75bfdb
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/5256
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rw-r--r-- | src/southbridge/intel/ibexpeak/sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/ibexpeak/sata.c b/src/southbridge/intel/ibexpeak/sata.c index 078dc8e024..5f3c4d3aa5 100644 --- a/src/southbridge/intel/ibexpeak/sata.c +++ b/src/southbridge/intel/ibexpeak/sata.c @@ -263,7 +263,7 @@ static struct device_operations sata_ops = { .ops_pci = &sata_pci_ops, }; -static const unsigned short pci_device_ids[] = { 0x3b2e, 0 }; +static const unsigned short pci_device_ids[] = { 0x3b28, 0x3b29, 0x3b2e, 0 }; static const struct pci_driver pch_sata __pci_driver = { .ops = &sata_ops, |