summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/ofconsole.c
diff options
context:
space:
mode:
authorGeoff Levand2007-06-16 00:06:40 +0200
committerPaul Mackerras2007-06-28 11:16:49 +0200
commitb96fbb6e1eb81bb21a8c3462773a0056e12de427 (patch)
tree5a4094f10d63bafaa5d203497857bb36e9e34bd1 /arch/powerpc/boot/ofconsole.c
parent[POWERPC] Add u64 printf to bootwrapper (diff)
downloadkernel-qcow2-linux-b96fbb6e1eb81bb21a8c3462773a0056e12de427.tar.gz
kernel-qcow2-linux-b96fbb6e1eb81bb21a8c3462773a0056e12de427.tar.xz
kernel-qcow2-linux-b96fbb6e1eb81bb21a8c3462773a0056e12de427.zip
[POWERPC] Fix constantness of bootwrapper arg
Fixes the constantness of the powerpc bootwrapper's console_ops.write routine. Allows printing of constant strings. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/ofconsole.c')
-rw-r--r--arch/powerpc/boot/ofconsole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/ofconsole.c b/arch/powerpc/boot/ofconsole.c
index 00c9dc92dd2f..43c0f36c3326 100644
--- a/arch/powerpc/boot/ofconsole.c
+++ b/arch/powerpc/boot/ofconsole.c
@@ -33,7 +33,7 @@ static int of_console_open(void)
return -1;
}
-static void of_console_write(char *buf, int len)
+static void of_console_write(const char *buf, int len)
{
of_call_prom("write", 3, 1, of_stdout_handle, buf, len);
}