Commit 6d2d419f authored by Chris Dearman's avatar Chris Dearman Committed by Ralf Baechle

[MIPS] Don't byteswap writes to display when running bigendian

Signed-off-by: default avatarChris Dearman <chris@mips.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 94545bad
......@@ -37,9 +37,9 @@ void mips_display_message(const char *str)
for (i = 0; i <= 14; i=i+2) {
if (*str)
writel(*str++, display + i);
__raw_writel(*str++, display + i);
else
writel(' ', display + i);
__raw_writel(' ', display + i);
}
}
......
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