summaryrefslogtreecommitdiff
path: root/common/stdio.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-10-20 07:18:03 -0400
committerWolfgang Denk <wd@denx.de>2010-12-09 10:24:09 +0100
commit32ff4b7fe410bdea29ca38ab15f57e731fc920d1 (patch)
tree98c674e5beaa58074359208a393449307b4a54eb /common/stdio.c
parent543f0a3819a9af130f3f80a660099fad8d2d4b8e (diff)
downloadu-boot-imx-32ff4b7fe410bdea29ca38ab15f57e731fc920d1.zip
u-boot-imx-32ff4b7fe410bdea29ca38ab15f57e731fc920d1.tar.gz
u-boot-imx-32ff4b7fe410bdea29ca38ab15f57e731fc920d1.tar.bz2
stdio: constify "name" arg in public api
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'common/stdio.c')
-rw-r--r--common/stdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/stdio.c b/common/stdio.c
index ab7c5ab..b20772c 100644
--- a/common/stdio.c
+++ b/common/stdio.c
@@ -105,7 +105,7 @@ struct list_head* stdio_get_list(void)
return &(devs.list);
}
-struct stdio_dev* stdio_get_by_name(char* name)
+struct stdio_dev* stdio_get_by_name(const char *name)
{
struct list_head *pos;
struct stdio_dev *dev;
@@ -155,7 +155,7 @@ int stdio_register (struct stdio_dev * dev)
* returns 0 if success, -1 if device is assigned and 1 if devname not found
*/
#ifdef CONFIG_SYS_STDIO_DEREGISTER
-int stdio_deregister(char *devname)
+int stdio_deregister(const char *devname)
{
int l;
struct list_head *pos;