From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Fleming Date: Tue, 10 Feb 2009 19:43:54 -0600 Subject: [U-Boot] [PATCH] Add eth_get_dev_by_index In-Reply-To: <200902102001.40073.vapier@gentoo.org> References: <1234313735-19481-1-git-send-email-afleming@freescale.com> <200902102001.40073.vapier@gentoo.org> Message-ID: <2acbd3e40902101743w5d9dc788lb05170769790103f@mail.gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Tue, Feb 10, 2009 at 7:01 PM, Mike Frysinger wrote: > On Tuesday 10 February 2009 19:55:35 Andy Fleming wrote: >> diff --git a/include/net.h b/include/net.h >> index bbe0d4b..fc14615 100644 >> --- a/include/net.h >> +++ b/include/net.h >> @@ -116,18 +116,19 @@ > > looks like a lot of pointless whitespace changes when there should just be 1 > new line: the prototype They're not pointless, they fix it so that the lines are <= 80 characters wide. The comments had extra spaces which made every line look like: foo blah /* this is a comment */ foo2 blah3 /* another one */ If people think the whitespace changes are too much, I'll move them into a separate patch. Andy