diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-20 07:18:03 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-11-28 21:58:48 +0100 |
commit | d7be3056def73c0ab53b3907f9a70a73253a5ae9 (patch) | |
tree | c2ad918fbe2d5b4fb676e8eee77d6b8927b87d0c /include/common.h | |
parent | 5a442c0addc69d0c4b58e98e5aec1cf07576debb (diff) | |
download | u-boot-imx-d7be3056def73c0ab53b3907f9a70a73253a5ae9.zip u-boot-imx-d7be3056def73c0ab53b3907f9a70a73253a5ae9.tar.gz u-boot-imx-d7be3056def73c0ab53b3907f9a70a73253a5ae9.tar.bz2 |
stdio: constify "name" arg in public api
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index 189ad81..0d1c872 100644 --- a/include/common.h +++ b/include/common.h @@ -655,7 +655,7 @@ char * strmhz(char *buf, long hz); /* common/console.c */ int console_init_f(void); /* Before relocation; uses the serial stuff */ int console_init_r(void); /* After relocation; uses the console stuff */ -int console_assign (int file, char *devname); /* Assign the console */ +int console_assign(int file, const char *devname); /* Assign the console */ int ctrlc (void); int had_ctrlc (void); /* have we had a Control-C since last clear? */ void clear_ctrlc (void); /* clear the Control-C condition */ |