2015-04-11 21:38:59

by Mike Turquette

[permalink] [raw]
Subject: Re: [PATCH] clk: at91: change to using endian agnositc IO

Quoting Ben Dooks (2015-03-26 06:07:29)
> Change to using endian agnostic _relaxed IO accessors instead of __raw
>
> Signed-off-by: Ben Dooks <[email protected]>

Applied.

Regards,
Mike

> --
> CC: Andrew Victor <[email protected]>
> CC: Nicolas Ferre <[email protected]>
> CC: Jean-Christophe Plagniol-Villard <[email protected]>
> CC: Mike Turquette <[email protected]> (maintainer:COMMON CLK FRAMEWORK)
> CC: Stephen Boyd <[email protected]> (maintainer:COMMON CLK FRAMEWORK)
> CC: [email protected] (open list:COMMON CLK FRAMEWORK)
> ---
> include/linux/clk/at91_pmc.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/clk/at91_pmc.h b/include/linux/clk/at91_pmc.h
> index c8e3b3d..7669f76 100644
> --- a/include/linux/clk/at91_pmc.h
> +++ b/include/linux/clk/at91_pmc.h
> @@ -20,10 +20,10 @@
> extern void __iomem *at91_pmc_base;
>
> #define at91_pmc_read(field) \
> - __raw_readl(at91_pmc_base + field)
> + readl_relaxed(at91_pmc_base + field)
>
> #define at91_pmc_write(field, value) \
> - __raw_writel(value, at91_pmc_base + field)
> + writel_relaxed(value, at91_pmc_base + field)
> #else
> .extern at91_pmc_base
> #endif
> --
> 2.1.4
>