[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20130129.135523.2248566447781665296.davem@davemloft.net>
Date: Tue, 29 Jan 2013 13:55:23 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: David.Choi@...rel.Com
Cc: joe@...ches.com, netdev@...r.kernel.org, Ping.Doong@...rel.Com,
bhutchings@...arflare.com
Subject: Re: [PATCH net-next] drivers/net/ethernet/micrel/ks8851_mll:
Implement basic statistics
From: "Choi, David" <David.Choi@...rel.Com>
Date: Tue, 29 Jan 2013 18:24:57 +0000
Do not post new versions of patches as replies to other emails or
threads, always use fresh, new list postings to post a patch.
> + } else if (likely((frame_hdr->sts & RXFSHR_RXFV) &&
> + frame_hdr->len > 0 &&
> + frame_hdr->len <= RX_BUF_SIZE)) {
Not indented properly, if you're using purely TAB characters and no
space characters at all, chances are you're doing it wrong.
Conditionals are to be indented like this:
if (A &&
B ||
C)
Specifically, the first character on the second and subsequent
lines must line up with the first column after the openning
parenthesis on the first line.
You must use whatever combination of TAB and space characters
are necessary to achieve this.
Several text editors, such as emacs, can be configured to do
all of this automatically for you when you press TAB.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists