diff options
author | Andrey Korolyov <andrey@xdel.ru> | 2017-08-10 13:21:14 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-08-11 10:35:07 -0700 |
commit | 591b6bb605785c12a21e8b07a08a277065b655a5 (patch) | |
tree | b2f480b847ee722d1406ea10a73c0f60107197a1 /drivers/ata/pata_cs5536.c | |
parent | d872ced29d5f847b23bb5a7bc24a234a936568bd (diff) | |
download | blackbird-obmc-linux-591b6bb605785c12a21e8b07a08a277065b655a5.tar.gz blackbird-obmc-linux-591b6bb605785c12a21e8b07a08a277065b655a5.zip |
cs5536: add support for IDE controller variant
Several legacy devices such as Geode-based Cisco ASA appliances
and DB800 development board do possess CS5536 IDE controller
with different PCI id than existing one. Using pata_generic is
not always feasible as at least DB800 requires MSR quirk from
pata_cs5536 to be used with vendor firmware.
Signed-off-by: Andrey Korolyov <andrey@xdel.ru>
CC: stable@vger.kernel.org
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/pata_cs5536.c')
-rw-r--r-- | drivers/ata/pata_cs5536.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/pata_cs5536.c b/drivers/ata/pata_cs5536.c index 6c15a554efbe..dc1255294628 100644 --- a/drivers/ata/pata_cs5536.c +++ b/drivers/ata/pata_cs5536.c @@ -289,6 +289,7 @@ static int cs5536_init_one(struct pci_dev *dev, const struct pci_device_id *id) static const struct pci_device_id cs5536[] = { { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_DEV_IDE), }, { }, }; |