diff mbox

[U-Boot,v2,5/6] netconsole: remove `serverip' check

Message ID 1304284220-15215-6-git-send-email-sguinot@lacie.com
State Changes Requested
Headers show

Commit Message

Simon Guinot May 1, 2011, 9:10 p.m. UTC
Netconsole use the environment variable `ncip' to configure the
destination IP. `serverip' don't need to be defined.

Signed-off-by: Simon Guinot <sguinot@lacie.com>
---
 net/net.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Wolfgang Denk May 1, 2011, 9:34 p.m. UTC | #1
Dear Simon Guinot,

In message <1304284220-15215-6-git-send-email-sguinot@lacie.com> you wrote:
> Netconsole use the environment variable `ncip' to configure the
> destination IP. `serverip' don't need to be defined.
> 
> Signed-off-by: Simon Guinot <sguinot@lacie.com>
> ---
>  net/net.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/net/net.c b/net/net.c
> index e50bdf1..5bf3c8c 100644
> --- a/net/net.c
> +++ b/net/net.c
> @@ -1718,7 +1718,6 @@ static int net_check_prereq (proto_t protocol)
>  #if defined(CONFIG_CMD_NFS)
>  	case NFS:
>  #endif
> -	case NETCONS:
>  	case TFTP:
>  		if (NetServerIP == 0) {
>  			puts ("*** ERROR: `serverip' not set\n");
> @@ -1729,6 +1728,7 @@ static int net_check_prereq (proto_t protocol)
>      common:
>  #endif
>  
> +	case NETCONS:

Please add a "/* fall through */" comment before the case label, so it
is clear to the reader that this is intended behaviour.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/net/net.c b/net/net.c
index e50bdf1..5bf3c8c 100644
--- a/net/net.c
+++ b/net/net.c
@@ -1718,7 +1718,6 @@  static int net_check_prereq (proto_t protocol)
 #if defined(CONFIG_CMD_NFS)
 	case NFS:
 #endif
-	case NETCONS:
 	case TFTP:
 		if (NetServerIP == 0) {
 			puts ("*** ERROR: `serverip' not set\n");
@@ -1729,6 +1728,7 @@  static int net_check_prereq (proto_t protocol)
     common:
 #endif
 
+	case NETCONS:
 		if (NetOurIP == 0) {
 			puts ("*** ERROR: `ipaddr' not set\n");
 			return (1);