diff options
author | Uwe Koziolek <uwe.koziolek@gmx.net> | 2007-07-08 09:21:58 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-07-08 09:21:58 -0400 |
commit | 4c6c914e4c2e0f91775ce4051b5a800c55175462 (patch) | |
tree | f367ffc62a6b7c1af8211bffacc8ef60c55cf29c | |
parent | 95511ad4342cd094e62c807f6631b9a19cc6b129 (diff) |
sis5513: adding PCI-ID
The SiS966 has one additional PCI-ID 1180.
If the chipset is using this PCI-ID, the primary channel is connected to the
first PATA-port. The secondary channel is connected to SATA-ports in IDE
emulation mode. The legacy IO-ports are used.
The including of the PCI-ID into pata_sis is not sufficient, because the legacy
driver in drivers/ide is initialized before pata_sis.
Signed-off-by: Uwe Koziolek <uwe.koziolek@gmx.net>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | drivers/ide/pci/sis5513.c | 1 | ||||
-rw-r--r-- | include/linux/pci_ids.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ide/pci/sis5513.c b/drivers/ide/pci/sis5513.c index bb6cc4aedd63..ec0adad9ef61 100644 --- a/drivers/ide/pci/sis5513.c +++ b/drivers/ide/pci/sis5513.c | |||
@@ -872,6 +872,7 @@ static int __devinit sis5513_init_one(struct pci_dev *dev, const struct pci_devi | |||
872 | static struct pci_device_id sis5513_pci_tbl[] = { | 872 | static struct pci_device_id sis5513_pci_tbl[] = { |
873 | { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5513, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 873 | { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5513, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
874 | { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5518, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 874 | { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5518, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
875 | { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_1180, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | ||
875 | { 0, }, | 876 | { 0, }, |
876 | }; | 877 | }; |
877 | MODULE_DEVICE_TABLE(pci, sis5513_pci_tbl); | 878 | MODULE_DEVICE_TABLE(pci, sis5513_pci_tbl); |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 9a03b47da603..5b1c9994f89a 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
@@ -661,6 +661,7 @@ | |||
661 | #define PCI_DEVICE_ID_SI_965 0x0965 | 661 | #define PCI_DEVICE_ID_SI_965 0x0965 |
662 | #define PCI_DEVICE_ID_SI_966 0x0966 | 662 | #define PCI_DEVICE_ID_SI_966 0x0966 |
663 | #define PCI_DEVICE_ID_SI_968 0x0968 | 663 | #define PCI_DEVICE_ID_SI_968 0x0968 |
664 | #define PCI_DEVICE_ID_SI_1180 0x1180 | ||
664 | #define PCI_DEVICE_ID_SI_5511 0x5511 | 665 | #define PCI_DEVICE_ID_SI_5511 0x5511 |
665 | #define PCI_DEVICE_ID_SI_5513 0x5513 | 666 | #define PCI_DEVICE_ID_SI_5513 0x5513 |
666 | #define PCI_DEVICE_ID_SI_5517 0x5517 | 667 | #define PCI_DEVICE_ID_SI_5517 0x5517 |