diff options
author | Matt Johnson <johnso87@illinois.edu> | 2012-04-27 01:42:30 -0500 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2012-05-31 00:43:48 +0100 |
commit | 521045df1e89da82494e8cfbddb74ab169c7b5d0 (patch) | |
tree | bf011374c68395a48f70246a323f2f77b77cfe6f /drivers/ata | |
parent | 3bd15e770d6b33b53306cb6279234da2383ba3c9 (diff) |
ahci: Detect Marvell 88SE9172 SATA controller
commit 642d89252201c4155fc3946bf9cdea409e5d263e upstream.
The Marvell 88SE9172 SATA controller (PCI ID 1b4b 917a) already worked
once it was detected, but was missing an ahci_pci_tbl entry.
Boot tested on a Gigabyte Z68X-UD3H-B3 motherboard.
Signed-off-by: Matt Johnson <johnso87@illinois.edu>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/ahci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index cf26222a93c5..fb6591579429 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -384,6 +384,8 @@ static const struct pci_device_id ahci_pci_tbl[] = { .driver_data = board_ahci_yes_fbs }, /* 88se9128 */ { PCI_DEVICE(0x1b4b, 0x9125), .driver_data = board_ahci_yes_fbs }, /* 88se9125 */ + { PCI_DEVICE(0x1b4b, 0x917a), + .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ { PCI_DEVICE(0x1b4b, 0x91a3), .driver_data = board_ahci_yes_fbs }, |