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/iomux.h | |
| parent | 5a442c0addc69d0c4b58e98e5aec1cf07576debb (diff) | |
| download | olio-uboot-2014.01-d7be3056def73c0ab53b3907f9a70a73253a5ae9.tar.xz olio-uboot-2014.01-d7be3056def73c0ab53b3907f9a70a73253a5ae9.zip | |
stdio: constify "name" arg in public api
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/iomux.h')
| -rw-r--r-- | include/iomux.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/iomux.h b/include/iomux.h index e38a81e77..fcf0f9319 100644 --- a/include/iomux.h +++ b/include/iomux.h @@ -43,6 +43,6 @@ extern int cd_count[MAX_FILES];  int iomux_doenv(const int, const char *);  void iomux_printdevs(const int); -struct stdio_dev *search_device(int, char *); +struct stdio_dev *search_device(int, const char *);  #endif /* _IO_MUX_H */ |