mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
stdio: constify "name" arg in public api
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
5a442c0add
commit
d7be3056de
5 changed files with 8 additions and 8 deletions
|
@ -93,10 +93,10 @@ int stdio_register (struct stdio_dev * dev);
|
|||
int stdio_init (void);
|
||||
void stdio_print_current_devices(void);
|
||||
#ifdef CONFIG_SYS_STDIO_DEREGISTER
|
||||
int stdio_deregister(char *devname);
|
||||
int stdio_deregister(const char *devname);
|
||||
#endif
|
||||
struct list_head* stdio_get_list(void);
|
||||
struct stdio_dev* stdio_get_by_name(char* name);
|
||||
struct stdio_dev* stdio_get_by_name(const char* name);
|
||||
struct stdio_dev* stdio_clone(struct stdio_dev *dev);
|
||||
|
||||
#ifdef CONFIG_ARM_DCC_MULTI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue