[RFCv2 endianess 1/4] pwm: Add Freescale FTM PWM driver support
Li.Xiubo at freescale.com
Li.Xiubo at freescale.com
Fri Dec 13 04:52:02 EST 2013
Hi Thierry,
> I think perhaps what Mark may have meant was something like this:
>
> static inline u32 fsl_pwm_readl(struct fsl_pwm_chip *fpc,
> const void __iomem *addr)
> {
> u32 value = readl(addr);
>
> if (likely(fpc->big_endian))
> value = be32_to_cpu(value);
> else
> value = le32_to_cpu(value);
>
> return value;
> }
>
> static inline void fsl_pwm_writel(struct fsl_pwm_chip *fpc, u32 value,
> const void __iomem *addr)
> {
> if (likely(fpc->big_endian))
> value = cpu_to_be32(value);
> else
> value = cpu_to_le32(value);
>
> writel(value, addr);
> }
>
> That way you call the accessors only once, and do the conversion after
> or before that.
>
Yes, this looks better.
And I have already sent the v7 patches has addressed about this.
--
Xiubo
More information about the linux-arm-kernel
mailing list