aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/serial.c
diff options
context:
space:
mode:
authorGeoff Levand <geoffrey.levand@am.sony.com>2007-06-16 08:06:40 +1000
committerPaul Mackerras <paulus@samba.org>2007-06-28 19:16:49 +1000
commitb96fbb6e1eb81bb21a8c3462773a0056e12de427 (patch)
tree5a4094f10d63bafaa5d203497857bb36e9e34bd1 /arch/powerpc/boot/serial.c
parent0aa97d6e420039fc4a6040acdf53e56e0f90c0f5 (diff)
downloadkernel_samsung_smdk4412-b96fbb6e1eb81bb21a8c3462773a0056e12de427.zip
kernel_samsung_smdk4412-b96fbb6e1eb81bb21a8c3462773a0056e12de427.tar.gz
kernel_samsung_smdk4412-b96fbb6e1eb81bb21a8c3462773a0056e12de427.tar.bz2
[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/serial.c')
-rw-r--r--arch/powerpc/boot/serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/serial.c b/arch/powerpc/boot/serial.c
index 7fd3233..eaa0d3a 100644
--- a/arch/powerpc/boot/serial.c
+++ b/arch/powerpc/boot/serial.c
@@ -27,7 +27,7 @@ static int serial_open(void)
return scdp->open();
}
-static void serial_write(char *buf, int len)
+static void serial_write(const char *buf, int len)
{
struct serial_console_data *scdp = console_ops.data;