On 30 June 2015 at 18:30, Ard Biesheuvel <ard.biesheu...@linaro.org> wrote: > In order to comply with the rules that apply when STRICT_MM_TYPECHECKS > is defined, wrap the initializer for a pgprot_t in __pgprot(). > > Signed-off-by: Ard Biesheuvel <ard.biesheu...@linaro.org> > --- > drivers/pci/host/pci-tegra.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/pci/host/pci-tegra.c b/drivers/pci/host/pci-tegra.c > index 00e92720d7f7..f8a70b64b55c 100644 > --- a/drivers/pci/host/pci-tegra.c > +++ b/drivers/pci/host/pci-tegra.c > @@ -382,8 +382,8 @@ static unsigned long tegra_pcie_conf_offset(unsigned int > devfn, int where) > static struct tegra_pcie_bus *tegra_pcie_bus_alloc(struct tegra_pcie *pcie, > unsigned int busnr) > { > - pgprot_t prot = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | L_PTE_XN | > - L_PTE_MT_DEV_SHARED | L_PTE_SHARED; > + pgprot_t prot = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | > + L_PTE_XN | L_PTE_MT_DEV_SHARED | > L_PTE_SHARED); > phys_addr_t cs = pcie->cs->start; > struct tegra_pcie_bus *bus; > unsigned int i;
Ping? -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html