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 /arch/powerpc/xmon/nonstdio.h | |
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>
Diffstat (limited to 'arch/powerpc/xmon/nonstdio.h')
-rw-r--r-- | arch/powerpc/xmon/nonstdio.h | 2 |
1 files changed, 1 insertions, 1 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); |