diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2014-09-05 13:21:00 -0400 |
---|---|---|
committer | Zefan Li <lizefan@huawei.com> | 2014-12-01 18:02:26 +0800 |
commit | e77f3791c866b24fbb0ddd27f46590ea72f14be6 (patch) | |
tree | 61ca762647ca5b06a9c5d765a04c06f841c3db06 | |
parent | 93408be9e1ea67f14fe0c1c46a430f33cbef4180 (diff) |
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>
[lizf: Backported to 3.4:
- adjust context
- s/PCI_VENDOR_ID_MARVELL_EXT/0x1b4b/]
Signed-off-by: Zefan Li <lizefan@huawei.com>
-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 009a0974b7b0..d366a75e6705 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -443,6 +443,8 @@ static const struct pci_device_id ahci_pci_tbl[] = { .driver_data = board_ahci_yes_fbs }, /* 88se9125 */ { PCI_DEVICE(0x1b4b, 0x917a), .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ + { PCI_DEVICE(0x1b4b, 0x9182), + .driver_data = board_ahci_yes_fbs }, /* 88se9182 */ { PCI_DEVICE(0x1b4b, 0x9192), .driver_data = board_ahci_yes_fbs }, /* 88se9172 on some Gigabyte */ { PCI_DEVICE(0x1b4b, 0x91a3), |