Message ID | 1378173729-20700-1-git-send-email-wangyijing@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
On Tue, Sep 03, 2013 at 10:02:09AM +0800, Yijing Wang wrote: > No one uses "is_pcie" now, remove this obsolete member. > > Signed-off-by: Yijing Wang <wangyijing@huawei.com> Applied to my pci/misc branch for v3.13. Thanks! > --- > drivers/pci/probe.c | 1 - > include/linux/pci.h | 2 -- > 2 files changed, 0 insertions(+), 3 deletions(-) > > diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c > index eeb50bd..70f6e75 100644 > --- a/drivers/pci/probe.c > +++ b/drivers/pci/probe.c > @@ -983,7 +983,6 @@ void set_pcie_port_type(struct pci_dev *pdev) > pos = pci_find_capability(pdev, PCI_CAP_ID_EXP); > if (!pos) > return; > - pdev->is_pcie = 1; > pdev->pcie_cap = pos; > pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, ®16); > pdev->pcie_flags_reg = reg16; > diff --git a/include/linux/pci.h b/include/linux/pci.h > index 186540d..be06125 100644 > --- a/include/linux/pci.h > +++ b/include/linux/pci.h > @@ -317,8 +317,6 @@ struct pci_dev { > unsigned int msix_enabled:1; > unsigned int ari_enabled:1; /* ARI forwarding */ > unsigned int is_managed:1; > - unsigned int is_pcie:1; /* Obsolete. Will be removed. > - Use pci_is_pcie() instead */ > unsigned int needs_freset:1; /* Dev requires fundamental reset */ > unsigned int state_saved:1; > unsigned int is_physfn:1; > -- > 1.7.1 > > -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index eeb50bd..70f6e75 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -983,7 +983,6 @@ void set_pcie_port_type(struct pci_dev *pdev) pos = pci_find_capability(pdev, PCI_CAP_ID_EXP); if (!pos) return; - pdev->is_pcie = 1; pdev->pcie_cap = pos; pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, ®16); pdev->pcie_flags_reg = reg16; diff --git a/include/linux/pci.h b/include/linux/pci.h index 186540d..be06125 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -317,8 +317,6 @@ struct pci_dev { unsigned int msix_enabled:1; unsigned int ari_enabled:1; /* ARI forwarding */ unsigned int is_managed:1; - unsigned int is_pcie:1; /* Obsolete. Will be removed. - Use pci_is_pcie() instead */ unsigned int needs_freset:1; /* Dev requires fundamental reset */ unsigned int state_saved:1; unsigned int is_physfn:1;
No one uses "is_pcie" now, remove this obsolete member. Signed-off-by: Yijing Wang <wangyijing@huawei.com> --- drivers/pci/probe.c | 1 - include/linux/pci.h | 2 -- 2 files changed, 0 insertions(+), 3 deletions(-)