@@ -73,8 +73,8 @@ static int at91sam9260_restart(struct notifier_block *this, unsigned long mode,
: "r" (at91_ramc_base[0]),
"r" (at91_rstc_base),
"r" (1),
- "r" (AT91_SDRAMC_LPCB_POWER_DOWN),
- "r" (AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST));
+ "r" cpu_to_le32(AT91_SDRAMC_LPCB_POWER_DOWN),
+ "r" cpu_to_le32(AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST));
return NOTIFY_DONE;
}
@@ -116,8 +116,8 @@ static int at91sam9g45_restart(struct notifier_block *this, unsigned long mode,
"r" (at91_ramc_base[1]),
"r" (at91_rstc_base),
"r" (1),
- "r" (AT91_DDRSDRC_LPCB_POWER_DOWN),
- "r" (AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST)
+ "r" cpu_to_le32(AT91_DDRSDRC_LPCB_POWER_DOWN),
+ "r" cpu_to_le32(AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST)
: "r0");
return NOTIFY_DONE;
Fix the passing of big endian data to routines that will be writing it to the bus in the wrong order. Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> -- CC: Sebastian Reichel <sre@kernel.org> (maintainer:POWER SUPPLY CLAS...,commit_signer:2/5=40%) CC: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> (maintainer:POWER SUPPLY CLAS...) CC: David Woodhouse <dwmw2@infradead.org> (maintainer:POWER SUPPLY CLAS...) CC: Nicolas Ferre <nicolas.ferre@atmel.com> (commit_signer:3/5=60%) CC: Alexandre Belloni <alexandre.belloni@free-electrons.com> (commit_signer:3/5=60%,authored:2/5=40%,removed_lines:4/18=22%) CC: Maxime Ripard <maxime.ripard@free-electrons.com> (commit_signer:1/5=20%,authored:1/5=20%,added_lines:252/278=91%) CC: Guenter Roeck <linux@roeck-us.net> (commit_signer:1/5=20%,authored:1/5=20%,added_lines:18/278=6%,removed_lines:10/18=56%) CC: linux-pm@vger.kernel.org (open list:POWER SUPPLY CLAS...) --- drivers/power/reset/at91-reset.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)