Commit cf037a9b authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Li Yang

soc: fsl: qe: drop volatile qualifier of struct qe_ic::regs

The actual io accessors (e.g. in_be32) implicitly add a volatile
qualifier to their address argument. Remove volatile from the struct
definition and the qe_ic_(read/write) helpers, in preparation for
switching from the ppc-specific io accessors to generic ones.
Reviewed-by: default avatarTimur Tabi <timur@kernel.org>
Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarLi Yang <leoyang.li@nxp.com>
parent 1972194f
...@@ -171,12 +171,12 @@ static struct qe_ic_info qe_ic_info[] = { ...@@ -171,12 +171,12 @@ static struct qe_ic_info qe_ic_info[] = {
}, },
}; };
static inline u32 qe_ic_read(volatile __be32 __iomem * base, unsigned int reg) static inline u32 qe_ic_read(__be32 __iomem *base, unsigned int reg)
{ {
return in_be32(base + (reg >> 2)); return in_be32(base + (reg >> 2));
} }
static inline void qe_ic_write(volatile __be32 __iomem * base, unsigned int reg, static inline void qe_ic_write(__be32 __iomem *base, unsigned int reg,
u32 value) u32 value)
{ {
out_be32(base + (reg >> 2), value); out_be32(base + (reg >> 2), value);
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
struct qe_ic { struct qe_ic {
/* Control registers offset */ /* Control registers offset */
volatile u32 __iomem *regs; u32 __iomem *regs;
/* The remapper for this QEIC */ /* The remapper for this QEIC */
struct irq_domain *irqhost; struct irq_domain *irqhost;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment