Re: [U-Boot] [PATCH v2 17/25] net: cosmetic: Clean up cmd_net variables and functions

2015-04-08 Thread Simon Glass
On 8 April 2015 at 06:46, Simon Glass  wrote:
> On 8 April 2015 at 00:41, Joe Hershberger  wrote:
>> Make a thorough pass through all variables and function names contained
>> within common/cmd_net.c and remove CamelCase and improve naming.
>>
>> Signed-off-by: Joe Hershberger 
>> ---
>>
>> Changes in v2: None
>>
>>  common/cmd_net.c | 29 ++---
>>  include/net.h| 10 +-
>>  net/net.c| 26 +-
>>  3 files changed, 32 insertions(+), 33 deletions(-)
>
> Acked-by: Simon Glass 

Applied to u-boot-dm/next, thanks!
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 17/25] net: cosmetic: Clean up cmd_net variables and functions

2015-04-08 Thread Simon Glass
On 8 April 2015 at 00:41, Joe Hershberger  wrote:
> Make a thorough pass through all variables and function names contained
> within common/cmd_net.c and remove CamelCase and improve naming.
>
> Signed-off-by: Joe Hershberger 
> ---
>
> Changes in v2: None
>
>  common/cmd_net.c | 29 ++---
>  include/net.h| 10 +-
>  net/net.c| 26 +-
>  3 files changed, 32 insertions(+), 33 deletions(-)

Acked-by: Simon Glass 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 17/25] net: cosmetic: Clean up cmd_net variables and functions

2015-04-07 Thread Joe Hershberger
Make a thorough pass through all variables and function names contained
within common/cmd_net.c and remove CamelCase and improve naming.

Signed-off-by: Joe Hershberger 
---

Changes in v2: None

 common/cmd_net.c | 29 ++---
 include/net.h| 10 +-
 net/net.c| 26 +-
 3 files changed, 32 insertions(+), 33 deletions(-)

diff --git a/common/cmd_net.c b/common/cmd_net.c
index 0270ac3..a672d77 100644
--- a/common/cmd_net.c
+++ b/common/cmd_net.c
@@ -157,15 +157,13 @@ static void netboot_update_env(void)
if (net_nis_domain[0])
setenv("domain", net_nis_domain);
 
-#if defined(CONFIG_CMD_SNTP) \
-&& defined(CONFIG_BOOTP_TIMEOFFSET)
+#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
if (NetTimeOffset) {
sprintf(tmp, "%d", NetTimeOffset);
setenv("timeoffset", tmp);
}
 #endif
-#if defined(CONFIG_CMD_SNTP) \
-&& defined(CONFIG_BOOTP_NTPSERVER)
+#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
if (net_ntp_server.s_addr) {
ip_to_string(net_ntp_server, tmp);
setenv("ntpserverip", tmp);
@@ -183,9 +181,9 @@ static int netboot_common(enum proto_t proto, cmd_tbl_t 
*cmdtp, int argc,
ulong addr;
 
/* pre-set load_addr */
-   if ((s = getenv("loadaddr")) != NULL) {
+   s = getenv("loadaddr");
+   if (s != NULL)
load_addr = simple_strtoul(s, NULL, 16);
-   }
 
switch (argc) {
case 1:
@@ -205,7 +203,8 @@ static int netboot_common(enum proto_t proto, cmd_tbl_t 
*cmdtp, int argc,
  sizeof(net_boot_file_name));
break;
 
-   case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
+   case 3:
+   load_addr = simple_strtoul(argv[1], NULL, 16);
copy_filename(net_boot_file_name, argv[2],
  sizeof(net_boot_file_name));
 
@@ -214,7 +213,7 @@ static int netboot_common(enum proto_t proto, cmd_tbl_t 
*cmdtp, int argc,
 #ifdef CONFIG_CMD_TFTPPUT
case 4:
if (strict_strtoul(argv[1], 16, &save_addr) < 0 ||
-   strict_strtoul(argv[2], 16, &save_size) < 0) {
+   strict_strtoul(argv[2], 16, &save_size) < 0) {
printf("Invalid address/size\n");
return CMD_RET_USAGE;
}
@@ -228,7 +227,8 @@ static int netboot_common(enum proto_t proto, cmd_tbl_t 
*cmdtp, int argc,
}
bootstage_mark(BOOTSTAGE_ID_NET_START);
 
-   if ((size = NetLoop(proto)) < 0) {
+   size = NetLoop(proto);
+   if (size < 0) {
bootstage_error(BOOTSTAGE_ID_NET_NETLOOP_OK);
return CMD_RET_FAILURE;
}
@@ -293,18 +293,17 @@ static void cdp_update_env(void)
if (cdp_appliance_vlan != htons(-1)) {
printf("CDP offered appliance VLAN %d\n",
   ntohs(cdp_appliance_vlan));
-   VLAN_to_string(cdp_appliance_vlan, tmp);
+   vlan_to_string(cdp_appliance_vlan, tmp);
setenv("vlan", tmp);
-   NetOurVLAN = cdp_appliance_vlan;
+   net_our_vlan = cdp_appliance_vlan;
}
 
if (cdp_native_vlan != htons(-1)) {
printf("CDP offered native VLAN %d\n", ntohs(cdp_native_vlan));
-   VLAN_to_string(cdp_native_vlan, tmp);
+   vlan_to_string(cdp_native_vlan, tmp);
setenv("nvlan", tmp);
-   NetOurNativeVLAN = cdp_native_vlan;
+   net_native_vlan = cdp_native_vlan;
}
-
 }
 
 int do_cdp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
@@ -356,7 +355,7 @@ int do_sntp(cmd_tbl_t *cmdtp, int flag, int argc, char * 
const argv[])
 
if (NetLoop(SNTP) < 0) {
printf("SNTP failed: host %pI4 not responding\n",
-   &net_ntp_server);
+  &net_ntp_server);
return CMD_RET_FAILURE;
}
 
diff --git a/include/net.h b/include/net.h
index a7aefbc..c4a534c 100644
--- a/include/net.h
+++ b/include/net.h
@@ -485,8 +485,8 @@ extern const u8 net_null_ethaddr[6];
 
 #define VLAN_NONE  4095/* untagged */
 #define VLAN_IDMASK0x0fff  /* mask of valid vlan id */
-extern ushort  NetOurVLAN; /* Our VLAN */
-extern ushort  NetOurNativeVLAN;   /* Our Native VLAN */
+extern ushort  net_our_vlan;   /* Our VLAN */
+extern ushort  net_native_vlan;/* Our Native VLAN */
 
 extern int NetRestartWrap; /* Tried all network devices */
 
@@ -785,13 +785,13 @@ void ip_to_string(struct in_addr x, char *s);
 struct in_addr string_to_ip(const char *s);
 
 /* Convert a VLAN id to a string */
-void VLAN_to_string(ushort x, char *s);
+void vlan_to_string(ushort