aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Dooks <[email protected]>2015-03-26 13:07:29 +0000
committerMichael Turquette <[email protected]>2015-04-11 14:38:39 -0700
commitf6194213cbe871341cd5dfcfe31b4de78ef9503f (patch)
tree69f0e10e370db4ba169c0e3abcf8a822e896b7d3
parentc14deee398c344a5f93c8206fa91314388b4a8c2 (diff)
clk: at91: change to using endian agnositc IO
Change to using endian agnostic _relaxed IO accessors instead of __raw Signed-off-by: Ben Dooks <[email protected]> -- 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) Signed-off-by: Michael Turquette <[email protected]>
-rw-r--r--include/linux/clk/at91_pmc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/clk/at91_pmc.h b/include/linux/clk/at91_pmc.h
index c8e3b3d1eded..7669f7618f39 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