[U-Boot] [PATCH v5] kirkwood: add support for Cloud Engines Pogoplug E02

2012-03-27 Thread Dave Purdy
This patch adds support for Cloud Engines Pogoplug E02 Information regarding the CE Pogoplug E02 board can be found at: http://archlinuxarm.org/platforms/armv5/pogoplug-v2-pinkgray Signed-off-by: Dave Purdy david.c.pu...@gmail.com Cc: prafu...@marvell.com Cc: albert.u.b...@aribaud.net ---

Re: [U-Boot] [PATCH 0/6] add zip command support for uboot

2012-03-27 Thread Lei Wen
Hi Tom, On Wed, Mar 28, 2012 at 2:12 AM, Tom Rini tr...@ti.com wrote: On Tue, Mar 27, 2012 at 04:04:29PM +0800, Lei Wen wrote: Hi, On Sun, Mar 25, 2012 at 11:53 PM,  adrian.w...@gmail.com wrote: From: Lei Wen lei...@marvell.com This patch set add zip command support for uboot. The

Re: [U-Boot] [PATCH 1/2] FSL/eSDHC: enable the peripheral clock to detect the card

2012-03-27 Thread Huang Changming-R66093
Thanks Jerry Huang -Original Message- From: Stefano Babic [mailto:sba...@denx.de] Sent: Wednesday, March 28, 2012 1:13 AM To: Huang Changming-R66093 Cc: u-boot@lists.denx.de; Andy Fleming Subject: Re: [U-Boot] [PATCH 1/2] FSL/eSDHC: enable the peripheral clock to detect the card

Re: [U-Boot] [PATCH] EXYNOS: Detect cpuid based on Exynos product codes

2012-03-27 Thread Minkyu Kang
Dear Chander Kashyap, On 14 March 2012 15:42, Chander Kashyap chander.kash...@linaro.org wrote: Exynos based SoC's have two different naming conventions. One is S5PC_ and other is EXXX_. This patch adds generic code to handle EXXX_ connvention. Signed-off-by: Chander Kashyap

Re: [U-Boot] [PATCH 1/2] FSL/eSDHC: enable the peripheral clock to detect the card

2012-03-27 Thread Huang Changming-R66093
Thanks Jerry Huang -Original Message- From: Stefano Babic [mailto:sba...@denx.de] Sent: Wednesday, March 28, 2012 1:17 AM To: Dirk Behme Cc: Huang Changming-R66093; u-boot@lists.denx.de; Andy Fleming Subject: Re: [U-Boot] [PATCH 1/2] FSL/eSDHC: enable the peripheral clock to

[U-Boot] [PATCH v2 05/21] net: Encapsulate CDP packet identification

2012-03-27 Thread Joe Hershberger
Checking for CDP packets should be encapsulated, not copied code. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from patch Move CDP out of

[U-Boot] [PATCH v2 17/21] net: cosmetic: Rename CDPHandler to CDPReceive

2012-03-27 Thread Joe Hershberger
This is not called as a handler, so don't name it that way Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable names and code

[U-Boot] [PATCH v2 01/18] net: Refactor IP, UPD, and ICMP header writing functions

2012-03-27 Thread Joe Hershberger
ICMP (ping) was reimplementing IP header code... it now shares code. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Eliminate CamelCase in new

[U-Boot] [PATCH v2 07/21] net: Move PING out of net.c

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Moved config fixes to a separate patch - Pushed #ifdef CONFIG_CMD_PING into header - Eliminated

[U-Boot] [PATCH v2 09/21] net: cosmetic: Un-typedef IP_t

2012-03-27 Thread Joe Hershberger
Rename IP header related things to IP_UDP. The existing definition of IP_t includes UDP header, so name it to accurately describe the structure. Also add a structure that only contains IP header fields to be used by functions that don't need UDP. Signed-off-by: Joe Hershberger

[U-Boot] [PATCH v2 12/21] net: cosmetic: Un-typedef ARP_t

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split apart from Un-typedef variables in net - Renamed structs from *_t to *_hdr since they are

[U-Boot] [PATCH v2 04/21] net: Move CDP out of net.c

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Moved is_cdp_packet to a separate patch - Fixed blank newline at the end of cdp.h - Pushed

[U-Boot] [PATCH v2 13/21] net: cosmetic: Un-typedef ICMP_t

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split apart from Un-typedef variables in net - Renamed structs from *_t to *_hdr since they are

[U-Boot] [PATCH v2 18/21] net: cosmetic: Rename OPT_SIZE to OPT_FIELD_SIZE

2012-03-27 Thread Joe Hershberger
Clearer constant name. Also remove related BOOTP_SIZE which was unused and doesn't take into account VLAN packets. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes

[U-Boot] [PATCH v2 03/21] net: Move MAC-seeded rand out of bootp.c

2012-03-27 Thread Joe Hershberger
Make the MAC-seeded random number generator available to /net in general. MAC-seeded rand will be needed by link-local as well, so give it an interface. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike

[U-Boot] [PATCH v2 12/18] net: Fix unused variable compile warning

2012-03-27 Thread Joe Hershberger
If CONFIG_BOOTP_SERVERIP is not defined, unused variable warning is reported. This was fixed in origin using a compiler feature instead of a simple reorder of the statements. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass

[U-Boot] [PATCH v2 03/10] net: cosmetic: net.c checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches net/bootp.c | 340

[U-Boot] [PATCH v2 10/10] net: cosmetic: netconsole.c checkpatch compliance

2012-03-27 Thread Joe Hershberger
Requires: --ignore CONSIDER_KSTRTO Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches drivers/net/netconsole.c | 122

[U-Boot] [PATCH v2 10/18] net: Add NetUpdateEther() to handle ARP and Ping replies

2012-03-27 Thread Joe Hershberger
When the network is VLAN or SNAP, NetUpdateEther() will preserve the original Ethernet packet header and simply replace the src and dest MACs and the protocol Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc:

[U-Boot] [PATCH v2 04/18] net: Refactor bootp packet length computations

2012-03-27 Thread Joe Hershberger
Eliminate pointer subtraction that recovers values computed earlier Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split debug message move to a

[U-Boot] [PATCH v2 00/18] Network stack refactoring

2012-03-27 Thread Joe Hershberger
This patch-series fixes a number of bugs in the network stack as well as improve the readability and maintainability of the network stack by eliminating duplicated code. These are more substantial changes than those in the Network stack cosmetic improvements series. This is dependant on the

[U-Boot] [PATCH v2 03/18] net: Refactor packet length computations

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- net/arp.c | 13 - net/ping.c |7 --- net/rarp.c |6 -- 3 files changed, 16 insertions(+),

[U-Boot] [PATCH v2 14/21] net: cosmetic: Rename parameter len to payload_len

2012-03-27 Thread Joe Hershberger
This name more explicitly claims that it does not include the header size Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable

[U-Boot] [PATCH v2 00/21] Network stack cosmetic improvements

2012-03-27 Thread Joe Hershberger
This patch-series reorganizes some of the net code to make it easier to navigate and easier to leverage common functionality while encapsulating private implementation details. It also makes simple readability clean-ups. This is dependant on the Network stack checkpatch.pl compliance

[U-Boot] [PATCH v2 0/3] Add link-local addressing support

2012-03-27 Thread Joe Hershberger
Link-local support allows the bootloader to get a usable network address regardless of network environment. Given that bootloaders may not always have access to a DHCP server, this functionality makes accessing it in those environments easier. It is also referred to as zero-configuration IP.

[U-Boot] [PATCH v2 1/3] net: Separate ArpRequest() into lower-level func

2012-03-27 Thread Joe Hershberger
Link-local support will need to send ARP packets, but needs more fine-grained control over the contents. Split the implementation into 2 parts so link-local can share the code. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass

[U-Boot] [PATCH v2 20/21] net: cosmetic: Rename tmp to reply_ip_addr in arp.c

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable names and code readability net/arp.c |6 +++--- 1 files changed, 3

[U-Boot] [PATCH v2 16/18] net: Fix net buffer initialization

2012-03-27 Thread Joe Hershberger
A new non-static function net_init() will initialize buffers and read from the environment. Only update from the env on each entry to NetLoop(). Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike

[U-Boot] [PATCH v2 05/18] net: Move debug trace to point of action

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Refactor bootp packet length computations net/bootp.c |2 +- 1 files changed, 1

[U-Boot] [PATCH v2 11/18] net: Don't write the serverip env var if configured not to

2012-03-27 Thread Joe Hershberger
Before this patch, bootp would not overwrite the value, but the value was still clobbered in the env Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: -

[U-Boot] [PATCH v2 14/18] net: Remove static allocation for MAC address in PingSend()

2012-03-27 Thread Joe Hershberger
Don't force ARP clients to return the MAC address if they don't care (such as ping) Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- net/arp.c |9 +

[U-Boot] [PATCH v2 06/10] net: cosmetic: nfs.* checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches net/nfs.c | 300

[U-Boot] [PATCH v2 08/18] net: Refactor to protect access to the NetState variable

2012-03-27 Thread Joe Hershberger
Changes to NetState now go through an accessor function called net_set_state() Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - net_set_state changed

[U-Boot] [PATCH v2 08/21] net: Move RARP receive logic out of net.c

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Moved void to the same line as function - Eliminate CamelCase in new function name net/net.c |

[U-Boot] [PATCH v2 16/21] net: cosmetic: Rename x to eth_proto

2012-03-27 Thread Joe Hershberger
x is a poor variable name Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable names and code readability net/net.c | 24

[U-Boot] [PATCH v2 06/18] net: Refactor ping receive handler

2012-03-27 Thread Joe Hershberger
There is no need to call through the handler... inline it Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- net/ping.c | 18 ++ 1 files changed, 2

[U-Boot] [PATCH v2 11/21] net: cosmetic: Un-typedef VLAN_Ethernet_t

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split apart from Un-typedef variables in net - Renamed structs from *_t to *_hdr since they are

[U-Boot] [PATCH v2 04/10] net: cosmetic: eth.c checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches net/eth.c | 67

[U-Boot] [PATCH v2 01/21] net: Remove CMD_PING where there's no CMD_NET

2012-03-27 Thread Joe Hershberger
Some boards claim to need ping, but don't support net. That makes no sense, and causes problems now that ping is in a separate file. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger

[U-Boot] [PATCH v2 07/18] net: Refactor to use NetSendPacket instead of eth_send directly

2012-03-27 Thread Joe Hershberger
Use this entry-point consistently across the net/ code Use a static inline function to preserve code size Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2:

[U-Boot] [PATCH v2 21/21] net: cosmetic: Replace magic numbers in arp.c with constants

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable names and code readability include/net.h |6 ++ net/arp.c |

[U-Boot] [PATCH v2 08/10] net: cosmetic: sntp.* checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches net/sntp.c | 31 +-- net/sntp.h |2 +-

[U-Boot] [PATCH v2 13/18] net: Add option CONFIG_BOOTP_MAY_FAIL

2012-03-27 Thread Joe Hershberger
This is useful if you want to look for a DHCP server, but try some other settings if not available. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: -

[U-Boot] [PATCH v2 15/21] net: cosmetic: Add a more explicit comment about 802.2

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable names and code readability - Fixed comment indention include/net.h |

[U-Boot] [PATCH v2 06/21] net: Move ARP out of net.c

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- include/net.h |3 +- net/Makefile |1 + net/arp.c | 213

[U-Boot] [PATCH v2 00/10] Network stack checkpatch.pl compliance

2012-03-27 Thread Joe Hershberger
This patch-series addresses checkpatch compliance issues throughout the networking stack. One particularly intrusive change is the removal of volatile from the Ethernet driver API. All network drivers need to be updated to not use volatile pointers when calling into the network stack. This is a

[U-Boot] [PATCH v2 02/18] net: Refactor NetSendUDPPacket to share more code

2012-03-27 Thread Joe Hershberger
Share more of the code that is common between ARP vs not. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- net/net.c | 44 +---

[U-Boot] [PATCH v2 01/10] net: Remove volatile from net API

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Remove volatile from eth driver API - Not using global NetRxPacket (since not casting away

[U-Boot] [PATCH v2 10/21] net: cosmetic: Un-typedef Ethernet_t

2012-03-27 Thread Joe Hershberger
Separate the Ethernet header from the 802 header. Base the size constants on the structs. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split apart

[U-Boot] [PATCH v2 02/10] net: cosmetic: net.h checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches include/net.h | 114

[U-Boot] [PATCH v2 09/18] net: Refactor to separate the UDP handler from the ARP handler

2012-03-27 Thread Joe Hershberger
Call a built-in dummy if none is registered... don't require protocols to register a handler (eliminating dummies) NetConsole now uses the ARP handler when waiting on arp (instead of needing a #define hack in arp.c) Clear handlers at the end of net loop Signed-off-by: Joe Hershberger

[U-Boot] [PATCH v2 17/18] net: Make sure NetLoop is initialized when using NetConsole

2012-03-27 Thread Joe Hershberger
Fix NetConsole bug that causes first packet header to claim a source IP address of 0.0.0.0 Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- drivers/net/netconsole.c |

[U-Boot] [PATCH v2 05/10] net: cosmetic: net.c checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches common/main.c|1 - include/common.h |4 include/net.h

[U-Boot] [PATCH v2 07/10] net: cosmetic: rarp.* checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches net/rarp.c | 28 ++-- net/rarp.h |4 ++-- 2

[U-Boot] [PATCH v2 02/21] net: Remove redefinitions of net.h functions

2012-03-27 Thread Joe Hershberger
Some copy/pasted drivers redefine functions defined in include/net.h. Remove these so that the definitions can be changed without error. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger

[U-Boot] [PATCH v2 15/18] net: Remove unused parameter from NetInitLoop()

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Fix net buffer initialization net/net.c |4 ++-- 1 files changed, 2 insertions(+), 2

[U-Boot] [PATCH v2 18/18] net: Don't copy every packet that waits for an ARP

2012-03-27 Thread Joe Hershberger
Use the NetArpTxPacket for the ARP packet, not to hold what used to be in NetTxPacket. This saves a copy and makes the code easier to understand. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike

[U-Boot] [PATCH v2 19/21] net: cosmetic: Alphabetize includes in net.c

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Improve variable names and code readability net/net.c | 20 ++-- 1

[U-Boot] [PATCH v2] net: Allow filtering on debug traces in the net subsystem

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split from Add link-local addressing support patch-series - This patch is dependant on Add

[U-Boot] [PATCH v2 09/10] net: cosmetic: tftp.* checkpatch compliance

2012-03-27 Thread Joe Hershberger
Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Simon Glass s...@chromium.org Cc: Mike Frysinger vap...@gentoo.org --- Changes for v2: - Split into smaller patches include/net.h |4 net/tftp.c| 30

<    1   2