Message ID | 7083dc9188405f25307d0a75d4e199846ac06ac9.1471525771.git.jpinto@synopsys.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
On Thu, Aug 18, 2016 at 02:18:29PM +0100, Joao Pinto wrote: > This patch is to fix a building error in branch pci/host-designware. > > Signed-off-by: Joao Pinto <jpinto@synopsys.com> Thanks, I fixed this yesterday, and I got a build success report for it (commit 01c076732e82). > --- > drivers/pci/host/pcie-designware.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/pci/host/pcie-designware.c b/drivers/pci/host/pcie-designware.c > index be70f28..6a743c5 100644 > --- a/drivers/pci/host/pcie-designware.c > +++ b/drivers/pci/host/pcie-designware.c > @@ -511,9 +511,8 @@ static const struct irq_domain_ops msi_domain_ops = { > > static u8 dw_pcie_iatu_unroll_enabled(struct pcie_port *pp) > { > - u32 val = 0; > + u32 val = dw_pcie_readl_rc(pp, PCIE_ATU_VIEWPORT); > > - dw_pcie_readl_rc(pp, PCIE_ATU_VIEWPORT, &val); > if (val == 0xffffffff) > return 1; > > -- > 1.8.1.5 > > -- > 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 -- 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/host/pcie-designware.c b/drivers/pci/host/pcie-designware.c index be70f28..6a743c5 100644 --- a/drivers/pci/host/pcie-designware.c +++ b/drivers/pci/host/pcie-designware.c @@ -511,9 +511,8 @@ static const struct irq_domain_ops msi_domain_ops = { static u8 dw_pcie_iatu_unroll_enabled(struct pcie_port *pp) { - u32 val = 0; + u32 val = dw_pcie_readl_rc(pp, PCIE_ATU_VIEWPORT); - dw_pcie_readl_rc(pp, PCIE_ATU_VIEWPORT, &val); if (val == 0xffffffff) return 1;
This patch is to fix a building error in branch pci/host-designware. Signed-off-by: Joao Pinto <jpinto@synopsys.com> --- drivers/pci/host/pcie-designware.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)