summaryrefslogtreecommitdiff
path: root/mkinstalldirs
AgeCommit message (Collapse)AuthorFilesLines
2006-11-13Initial import15.6-2Tobias Klauser1-0/+111
.submit();'>mode:
authorBjorn Helgaas <bhelgaas@google.com>2015-06-24 16:05:54 -0500
committerBjorn Helgaas <bhelgaas@google.com>2015-07-14 17:39:32 -0500
commitffb4d602623aef9eb813a35b87b20854c030a2ec (patch)
tree3ea640404450d7799af06383025f652f884ead8b /drivers/pci/access.c
parente7f6c6d02cc3fa7f78153919900561bd1dce02a3 (diff)
PCI: Add pcie_downstream_port() (true for Root and Switch Downstream Ports)
As used in the PCIe spec, "Downstream Port" includes both Root Ports and Switch Downstream Ports. We sometimes checked for PCI_EXP_TYPE_DOWNSTREAM when we should have checked for PCI_EXP_TYPE_ROOT_PORT or PCI_EXP_TYPE_DOWNSTREAM. For a Root Port without a slot, the effect of this was that using pcie_capability_read_word() to read PCI_EXP_SLTSTA returned zero instead of showing the Presence Detect State bit hardwired to one as the PCIe Spec, r3.0, sec 7.8, requires. (This read is completed in software because previous PCIe spec versions didn't require PCI_EXP_SLTSTA to exist at all.) Nothing in the kernel currently depends on this (pciehp only reads PCI_EXP_SLTSTA on ports with slots), so this is a cleanup and not a functional change. Add a pcie_downstream_port() helper function and use it. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/pci/access.c')