projects
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b920ee9
)
string_to_VLAN: constify "var" arg
author
Mike Frysinger
<vapier@gentoo.org>
Wed, 20 Oct 2010 11:16:48 +0000
(07:16 -0400)
committer
Wolfgang Denk
<wd@denx.de>
Sun, 28 Nov 2010 20:56:12 +0000
(21:56 +0100)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
include/net.h
patch
|
blob
|
history
net/net.c
patch
|
blob
|
history
diff --git
a/include/net.h
b/include/net.h
index
dd673f0
..
5e3495b
100644
(file)
--- a/
include/net.h
+++ b/
include/net.h
@@
-520,7
+520,7
@@
extern IPaddr_t string_to_ip(char *s);
extern void VLAN_to_string (ushort x, char *s);
/* Convert a string to a vlan id */
-extern ushort string_to_VLAN(char *s);
+extern ushort string_to_VLAN(c
onst c
har *s);
/* read a VLAN id from an environment variable */
extern ushort getenv_VLAN(char *);
diff --git
a/net/net.c
b/net/net.c
index
7576419
..
a609632
100644
(file)
--- a/
net/net.c
+++ b/
net/net.c
@@
-1913,7
+1913,7
@@
void VLAN_to_string(ushort x, char *s)
sprintf(s, "%d", x & VLAN_IDMASK);
}
-ushort string_to_VLAN(char *s)
+ushort string_to_VLAN(c
onst c
har *s)
{
ushort id;