diff options
author | Yu Zhao <yu.zhao@intel.com> | 2008-10-19 08:35:20 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-10-20 14:01:52 -0400 |
commit | 270c66be9b4a6f2be53ef3aec5dc8e7b07782ec9 (patch) | |
tree | 241fa7549d1b4500325130e3f632b6ac7a19f0b3 /drivers/pci/pcie/aer | |
parent | 0927678f55c9a50c296f7e6dae85e87b8236e155 (diff) |
PCI: fix AER capability check
The 'use pci_find_ext_capability everywhere' cleanup brought a new bug,
which makes the AER stop working. Fix it by actually using find_ext_cap
instead of just find_cap. Drop the unused config space size define while
we're at it.
Signed-off-by: Yu Zhao <yu.zhao@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pcie/aer')
-rw-r--r-- | drivers/pci/pcie/aer/aerdrv_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pcie/aer/aerdrv_core.c b/drivers/pci/pcie/aer/aerdrv_core.c index 1ff21f6045d6..dfc63d01f20a 100644 --- a/drivers/pci/pcie/aer/aerdrv_core.c +++ b/drivers/pci/pcie/aer/aerdrv_core.c | |||
@@ -33,11 +33,11 @@ int pci_enable_pcie_error_reporting(struct pci_dev *dev) | |||
33 | u16 reg16 = 0; | 33 | u16 reg16 = 0; |
34 | int pos; | 34 | int pos; |
35 | 35 | ||
36 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); | 36 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); |
37 | if (!pos) | 37 | if (!pos) |
38 | return -EIO; | 38 | return -EIO; |
39 | 39 | ||
40 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); | 40 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); |
41 | if (!pos) | 41 | if (!pos) |
42 | return -EIO; | 42 | return -EIO; |
43 | 43 | ||