diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-04-05 17:05:07 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-04-14 18:06:30 -0400 |
commit | 17f830bb83ff64533f02cfd4b114d4a5957c2ee7 (patch) | |
tree | fa94c6f0ec9bfec5f330f772fa61d171323a718f /drivers/pci/hotplug/pciehp.h | |
parent | 8e56aed0b0579b667489bcb1d94c223726f0eaa1 (diff) |
PCI: pciehp: Use PCI_EXP_SLTCAP_PSN define
Use PCI_EXP_SLTCAP_PSN to make it easier to find code that uses the
Physical Slot Number field in the PCIe Slot Capabilities register.
No functional change.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug/pciehp.h')
-rw-r--r-- | drivers/pci/hotplug/pciehp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/pciehp.h b/drivers/pci/hotplug/pciehp.h index 8a66866b8cf1..8e9012dca450 100644 --- a/drivers/pci/hotplug/pciehp.h +++ b/drivers/pci/hotplug/pciehp.h | |||
@@ -127,7 +127,7 @@ struct controller { | |||
127 | #define HP_SUPR_RM(ctrl) ((ctrl)->slot_cap & PCI_EXP_SLTCAP_HPS) | 127 | #define HP_SUPR_RM(ctrl) ((ctrl)->slot_cap & PCI_EXP_SLTCAP_HPS) |
128 | #define EMI(ctrl) ((ctrl)->slot_cap & PCI_EXP_SLTCAP_EIP) | 128 | #define EMI(ctrl) ((ctrl)->slot_cap & PCI_EXP_SLTCAP_EIP) |
129 | #define NO_CMD_CMPL(ctrl) ((ctrl)->slot_cap & PCI_EXP_SLTCAP_NCCS) | 129 | #define NO_CMD_CMPL(ctrl) ((ctrl)->slot_cap & PCI_EXP_SLTCAP_NCCS) |
130 | #define PSN(ctrl) ((ctrl)->slot_cap >> 19) | 130 | #define PSN(ctrl) (((ctrl)->slot_cap & PCI_EXP_SLTCAP_PSN) >> 19) |
131 | 131 | ||
132 | int pciehp_sysfs_enable_slot(struct slot *slot); | 132 | int pciehp_sysfs_enable_slot(struct slot *slot); |
133 | int pciehp_sysfs_disable_slot(struct slot *slot); | 133 | int pciehp_sysfs_disable_slot(struct slot *slot); |