diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-20 11:18:03 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-12-09 09:24:09 (GMT) |
commit | 32ff4b7fe410bdea29ca38ab15f57e731fc920d1 (patch) | |
tree | 98c674e5beaa58074359208a393449307b4a54eb /include/common.h | |
parent | 543f0a3819a9af130f3f80a660099fad8d2d4b8e (diff) | |
download | u-boot-fsl-qoriq-32ff4b7fe410bdea29ca38ab15f57e731fc920d1.tar.xz |
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 */ |