diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-08-21 19:15:31 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-08-21 19:15:31 -0500 |
commit | 15f6ddc7d9cf96f2ee88897c7164198ed6e45a77 (patch) | |
tree | 5221fdbc69c0805439287db6cb6f6a6b547cd12b /include | |
parent | f350339cbd0e8ed7751f98f0ef60cb3a0d410eda (diff) | |
download | linux-3.10-15f6ddc7d9cf96f2ee88897c7164198ed6e45a77.tar.gz linux-3.10-15f6ddc7d9cf96f2ee88897c7164198ed6e45a77.tar.bz2 linux-3.10-15f6ddc7d9cf96f2ee88897c7164198ed6e45a77.zip |
[POWERPC] Fix PCI Device ID for MPC8544/8533 processors
The initial user manuals for MPC8544/8533 had some issues with properly
documenting the device IDs for MPC8544/8533. These processors are almost
identical and both show up on the reference boards.
Fix up the quirks for PCIe support to handle MPC8533/E.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci_ids.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 07fc57429b5..8938d59013c 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -2092,8 +2092,10 @@ #define PCI_DEVICE_ID_MPC8568 0x0021 #define PCI_DEVICE_ID_MPC8567E 0x0022 #define PCI_DEVICE_ID_MPC8567 0x0023 -#define PCI_DEVICE_ID_MPC8544E 0x0030 -#define PCI_DEVICE_ID_MPC8544 0x0031 +#define PCI_DEVICE_ID_MPC8533E 0x0030 +#define PCI_DEVICE_ID_MPC8533 0x0031 +#define PCI_DEVICE_ID_MPC8544E 0x0032 +#define PCI_DEVICE_ID_MPC8544 0x0033 #define PCI_DEVICE_ID_MPC8641 0x7010 #define PCI_DEVICE_ID_MPC8641D 0x7011 |