projects
/
linux-edison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10c463a
)
PCI: Introduce accessor to retrieve PCIe Capabilities Register
author
Myron Stowe
<myron.stowe@redhat.com>
Sat, 26 Jan 2013 00:55:39 +0000
(17:55 -0700)
committer
Bjorn Helgaas
<bhelgaas@google.com>
Thu, 31 Jan 2013 04:24:05 +0000
(21:24 -0700)
Provide an accessor to retrieve the PCI Express device's Capabilities
Register.
Signed-off-by: Myron Stowe <myron.stowe@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
include/linux/pci.h
patch
|
blob
|
history
diff --git
a/include/linux/pci.h
b/include/linux/pci.h
index
15472d6
..
78581e1
100644
(file)
--- a/
include/linux/pci.h
+++ b/
include/linux/pci.h
@@
-1693,6
+1693,15
@@
static inline bool pci_is_pcie(struct pci_dev *dev)
}
/**
+ * pcie_caps_reg - get the PCIe Capabilities Register
+ * @dev: PCI device
+ */
+static inline u16 pcie_caps_reg(const struct pci_dev *dev)
+{
+ return dev->pcie_flags_reg;
+}
+
+/**
* pci_pcie_type - get the PCIe device/port type
* @dev: PCI device
*/