diff mbox

[U-Boot,2/8] net/net.c: cosmetic: variable initializations

Message ID 1304512847-7351-3-git-send-email-luca.ceresoli@comelit.it
State Changes Requested
Headers show

Commit Message

Luca Ceresoli May 4, 2011, 12:40 p.m. UTC
This removes the following checkpatch errors:
 - ERROR: do not initialise globals to 0 or NULL
 - ERROR: spaces required around that '=' (ctx:VxV)
 - ERROR: that open brace { should be on the previous line

Signed-off-by: Luca Ceresoli <luca.ceresoli@comelit.it>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Ben Warren <biggerbadderben@gmail.com>
---
 net/net.c |   42 ++++++++++++++++++++----------------------
 1 files changed, 20 insertions(+), 22 deletions(-)

Comments

Mike Frysinger May 4, 2011, 1:16 p.m. UTC | #1
On Wed, May 4, 2011 at 08:40, Luca Ceresoli wrote:
>  - ERROR: that open brace { should be on the previous line
>...
> -uchar          NetCDPAddr[6] =
> -                       { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
> +uchar          NetCDPAddr[6] = {
> +                       0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
>...

your fix here is worse than the original.  just leave them be.
-mike
Luca Ceresoli May 4, 2011, 4:42 p.m. UTC | #2
Mike Frysinger wrote:
> On Wed, May 4, 2011 at 08:40, Luca Ceresoli wrote:
>>   - ERROR: that open brace { should be on the previous line
>> ...
>> -uchar          NetCDPAddr[6] =
>> -                       { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
>> +uchar          NetCDPAddr[6] = {
>> +                       0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
>> ...
> your fix here is worse than the original.  just leave them be.

Damn, you're right!

I think a one-line solution would be even better (and much simpler):

uchar           NetCDPAddr[6] = {0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc};

BTW, this is the original checkpatch message:
   ERROR: that open brace { should be on the previous line
   #172: FILE: net.c:172:
   +uchar          NetCDPAddr[6] =
   +                       { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };

So either we choose the one-line solution above, or we have the first
checkpatch message that should be disabled in the U-Boot version, when it
will exist.

Your opinion?

Luca
Mike Frysinger May 5, 2011, 7:54 a.m. UTC | #3
On Wed, May 4, 2011 at 12:42, Luca Ceresoli wrote:
> Mike Frysinger wrote:
>> On Wed, May 4, 2011 at 08:40, Luca Ceresoli wrote:
>>>
>>>  - ERROR: that open brace { should be on the previous line
>>> ...
>>> -uchar          NetCDPAddr[6] =
>>> -                       { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
>>> +uchar          NetCDPAddr[6] = {
>>> +                       0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
>>> ...
>>
>> your fix here is worse than the original.  just leave them be.
>
> Damn, you're right!
>
> I think a one-line solution would be even better (and much simpler):
>
> uchar           NetCDPAddr[6] = {0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc};

i agree

> BTW, this is the original checkpatch message:
>  ERROR: that open brace { should be on the previous line
>  #172: FILE: net.c:172:
>  +uchar          NetCDPAddr[6] =
>  +                       { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
>
> So either we choose the one-line solution above, or we have the first
> checkpatch message that should be disabled in the U-Boot version, when it
> will exist.

sometimes it does warn when people do things wrongly, but this is once
again why i advocate people reviewing the output and not acting like a
robot.

i cant check checkpatch atm to see how it reacts, but these are
acceptable in my mind:
uchar foo[] = { 0, 1, 2, 3, };
uchar foo[] =
    { 0, 1, 2, 3, };
uchar foo[] = {
    0, 1, 2, 3,
};

the form you used though is certainly wrong (even if checkpatch didnt say so):
uchar foo[] = {
    0, 1, 2, 3, };
-mike
diff mbox

Patch

diff --git a/net/net.c b/net/net.c
index 90312eb..e89e118 100644
--- a/net/net.c
+++ b/net/net.c
@@ -117,23 +117,23 @@  DECLARE_GLOBAL_DATA_PTR;
 /** BOOTP EXTENTIONS **/
 
 /* Our subnet mask (0=unknown) */
-IPaddr_t	NetOurSubnetMask=0;
+IPaddr_t	NetOurSubnetMask;
 /* Our gateways IP address */
-IPaddr_t	NetOurGatewayIP=0;
+IPaddr_t	NetOurGatewayIP;
 /* Our DNS IP address */
-IPaddr_t	NetOurDNSIP=0;
+IPaddr_t	NetOurDNSIP;
 #if defined(CONFIG_BOOTP_DNS2)
 /* Our 2nd DNS IP address */
-IPaddr_t	NetOurDNS2IP=0;
+IPaddr_t	NetOurDNS2IP;
 #endif
 /* Our NIS domain */
-char		NetOurNISDomain[32]={0,};
+char		NetOurNISDomain[32] = {0,};
 /* Our hostname */
-char		NetOurHostName[32]={0,};
+char		NetOurHostName[32] = {0,};
 /* Our bootpath */
-char		NetOurRootPath[64]={0,};
+char		NetOurRootPath[64] = {0,};
 /* Our bootfile size in blocks */
-ushort		NetBootFileSize=0;
+ushort		NetBootFileSize;
 
 #ifdef CONFIG_MCAST_TFTP	/* Multicast TFTP */
 IPaddr_t Mcast_addr;
@@ -146,8 +146,7 @@  ulong		NetBootFileXferSize;
 /* Our ethernet address */
 uchar		NetOurEther[6];
 /* Boot server enet address */
-uchar		NetServerEther[6] =
-			{ 0, 0, 0, 0, 0, 0 };
+uchar		NetServerEther[6];
 /* Our IP addr (0 = unknown) */
 IPaddr_t	NetOurIP;
 /* Server IP addr (0 = unknown) */
@@ -159,27 +158,26 @@  int		NetRxPacketLen;
 /* IP packet ID */
 unsigned	NetIPID;
 /* Ethernet bcast address */
-uchar		NetBcastAddr[6] =
-			{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
-uchar		NetEtherNullAddr[6] =
-			{ 0, 0, 0, 0, 0, 0 };
+uchar		NetBcastAddr[6] = {
+			0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
+uchar		NetEtherNullAddr[6];
 #ifdef CONFIG_API
 void		(*push_packet)(volatile void *, int len) = 0;
 #endif
 #if defined(CONFIG_CMD_CDP)
 /* Ethernet bcast address */
-uchar		NetCDPAddr[6] =
-			{ 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
+uchar		NetCDPAddr[6] = {
+			0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
 #endif
 /* Network loop state */
 int		NetState;
 #ifdef CONFIG_NET_MULTI
 /* Tried all network devices */
-int		NetRestartWrap = 0;
+int		NetRestartWrap;
 /* Network loop restarted */
-static int	NetRestarted = 0;
+static int	NetRestarted;
 /* At least one device configured */
-static int	NetDevExists = 0;
+static int	NetDevExists;
 #endif
 
 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
@@ -206,7 +204,7 @@  static void CDPStart(void);
 /* NTP server IP address */
 IPaddr_t	NetNtpServerIP;
 /* offset time from UTC */
-int		NetTimeOffset=0;
+int		NetTimeOffset;
 #endif
 
 #ifdef CONFIG_NETCONSOLE
@@ -228,7 +226,7 @@  static ulong	timeStart;
 /* Current timeout value */
 static ulong	timeDelta;
 /* THE transmit packet */
-volatile uchar *NetTxPacket = 0;
+volatile uchar *NetTxPacket;
 
 static int net_check_prereq (proto_t protocol);
 
@@ -319,7 +317,7 @@  void ArpTimeoutCheck(void)
 static void
 NetInitLoop(proto_t protocol)
 {
-	static int env_changed_id = 0;
+	static int env_changed_id;
 	bd_t *bd = gd->bd;
 	int env_id = get_env_id ();