diff options
author | Ishizaki Kou <kou.ishizaki@toshiba.co.jp> | 2007-07-18 05:30:29 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-22 07:30:58 -0400 |
commit | 776568d4c93fe8def5ab4060344af554fe2b44be (patch) | |
tree | cf10358bfe61ad80f83b1eb32369ee81986a8b45 | |
parent | f8eb77d6fbdf13b94bcea48023d4e1dce4b3bffe (diff) |
[POWERPC] Make xmon_write accept a const buffer
Because xmon_write doesn't change the buffer, we should add 'const'
qualifier to the argument which points it.
Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/xmon/nonstdio.h | 2 | ||||
-rw-r--r-- | arch/powerpc/xmon/start.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/xmon/nonstdio.h b/arch/powerpc/xmon/nonstdio.h index 47cebbd2b1b1..22ec1bb8b720 100644 --- a/arch/powerpc/xmon/nonstdio.h +++ b/arch/powerpc/xmon/nonstdio.h | |||
@@ -9,6 +9,6 @@ extern char *xmon_gets(char *, int); | |||
9 | extern void xmon_printf(const char *, ...); | 9 | extern void xmon_printf(const char *, ...); |
10 | extern void xmon_map_scc(void); | 10 | extern void xmon_map_scc(void); |
11 | extern int xmon_expect(const char *str, unsigned long timeout); | 11 | extern int xmon_expect(const char *str, unsigned long timeout); |
12 | extern int xmon_write(void *ptr, int nb); | 12 | extern int xmon_write(const void *ptr, int nb); |
13 | extern int xmon_readchar(void); | 13 | extern int xmon_readchar(void); |
14 | extern int xmon_read_poll(void); | 14 | extern int xmon_read_poll(void); |
diff --git a/arch/powerpc/xmon/start.c b/arch/powerpc/xmon/start.c index 712552c4f242..8864de2af382 100644 --- a/arch/powerpc/xmon/start.c +++ b/arch/powerpc/xmon/start.c | |||
@@ -14,7 +14,7 @@ void xmon_map_scc(void) | |||
14 | { | 14 | { |
15 | } | 15 | } |
16 | 16 | ||
17 | int xmon_write(void *ptr, int nb) | 17 | int xmon_write(const void *ptr, int nb) |
18 | { | 18 | { |
19 | return udbg_write(ptr, nb); | 19 | return udbg_write(ptr, nb); |
20 | } | 20 | } |