mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-26 11:28:28 +00:00
PCI/DPC: Rename struct dpc_dev.rp to rp_extensions
"rp" is ambiguous: it might mean "this DPC device is a Root Port." But in fact, it means "this DPC device is a Root Port *and* it supports a set of DPC Extensions." Rename "rp" to "rp_extensions" to make this more clear. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Keith Busch <keith.busch@intel.com> Reviewed-by: Sinan Kaya <okaya@codeaurora.org>
This commit is contained in:
parent
aa745effd0
commit
be3039a392
@ -42,7 +42,7 @@ struct dpc_dev {
|
|||||||
struct pcie_device *dev;
|
struct pcie_device *dev;
|
||||||
struct work_struct work;
|
struct work_struct work;
|
||||||
u16 cap_pos;
|
u16 cap_pos;
|
||||||
bool rp;
|
bool rp_extensions;
|
||||||
u32 rp_pio_status;
|
u32 rp_pio_status;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -126,9 +126,9 @@ static void dpc_work(struct work_struct *work)
|
|||||||
pci_unlock_rescan_remove();
|
pci_unlock_rescan_remove();
|
||||||
|
|
||||||
dpc_wait_link_inactive(dpc);
|
dpc_wait_link_inactive(dpc);
|
||||||
if (dpc->rp && dpc_wait_rp_inactive(dpc))
|
if (dpc->rp_extensions && dpc_wait_rp_inactive(dpc))
|
||||||
return;
|
return;
|
||||||
if (dpc->rp && dpc->rp_pio_status) {
|
if (dpc->rp_extensions && dpc->rp_pio_status) {
|
||||||
pci_write_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_STATUS,
|
pci_write_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_STATUS,
|
||||||
dpc->rp_pio_status);
|
dpc->rp_pio_status);
|
||||||
dpc->rp_pio_status = 0;
|
dpc->rp_pio_status = 0;
|
||||||
@ -326,7 +326,7 @@ static int dpc_probe(struct pcie_device *dev)
|
|||||||
pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CAP, &cap);
|
pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CAP, &cap);
|
||||||
pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, &ctl);
|
pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, &ctl);
|
||||||
|
|
||||||
dpc->rp = (cap & PCI_EXP_DPC_CAP_RP_EXT);
|
dpc->rp_extensions = (cap & PCI_EXP_DPC_CAP_RP_EXT);
|
||||||
|
|
||||||
ctl = (ctl & 0xfff4) | PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN;
|
ctl = (ctl & 0xfff4) | PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN;
|
||||||
pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);
|
pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);
|
||||||
|
Loading…
Reference in New Issue
Block a user