mirror of https://gitee.com/openkylin/linux.git
ARM: tegra: pcie: don't cast __iomem pointers
Fixes a lot of: arch/arm/mach-tegra/pcie.c:678:8: warning: cast removes address space of expression arch/arm/mach-tegra/pcie.c:678:8: warning: incorrect type in argument 1 (different base types) arch/arm/mach-tegra/pcie.c:678:8: expected void const volatile [noderef] <asn:2>*<noident> arch/arm/mach-tegra/pcie.c:678:8: got unsigned int arch/arm/mach-tegra/pcie.c:678:8: warning: cast removes address space of expression Signed-off-by: Olof Johansson <olof@lixom.net> Acked-by: Stephen Warren <swarren@nvidia.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
45fba21862
commit
efaa19a582
|
@ -150,9 +150,9 @@
|
|||
static void __iomem *reg_pmc_base = IO_ADDRESS(TEGRA_PMC_BASE);
|
||||
|
||||
#define pmc_writel(value, reg) \
|
||||
__raw_writel(value, (u32)reg_pmc_base + (reg))
|
||||
__raw_writel(value, reg_pmc_base + (reg))
|
||||
#define pmc_readl(reg) \
|
||||
__raw_readl((u32)reg_pmc_base + (reg))
|
||||
__raw_readl(reg_pmc_base + (reg))
|
||||
|
||||
/*
|
||||
* Tegra2 defines 1GB in the AXI address map for PCIe.
|
||||
|
|
Loading…
Reference in New Issue