diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2014-09-05 13:21:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:52:10 -0700 |
commit | 4d75fdbdc0f0c4043158554d85a90d70584ba3d4 (patch) | |
tree | 35d6b8c366e2cf2799366bea9d0f296e6e776e23 /drivers/ata | |
parent | a6141656abb1b2b107e892d303b46015a9179c67 (diff) | |
download | lwn-4d75fdbdc0f0c4043158554d85a90d70584ba3d4.tar.gz lwn-4d75fdbdc0f0c4043158554d85a90d70584ba3d4.zip |
ahci: add pcid for Marvel 0x9182 controller
commit c5edfff9db6f4d2c35c802acb4abe0df178becee upstream.
Keystone K2E EVM uses Marvel 0x9182 controller. This requires support
for the ID in the ahci driver.
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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 f25968f9b266..00663d60f6d4 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -451,6 +451,8 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x917a), .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x9172), + .driver_data = board_ahci_yes_fbs }, /* 88se9182 */ + { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x9182), .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL_EXT, 0x9192), .driver_data = board_ahci_yes_fbs }, /* 88se9172 on some Gigabyte */ |