[U-Boot] [PATCH v2 13/14] net: emaclite: Let core to handle received packet

Michal Simek michal.simek at xilinx.com
Thu Dec 17 13:09:26 CET 2015


Pass pointer to core to handle packet.

Signed-off-by: Michal Simek <michal.simek at xilinx.com>
---

Changes in v2: None

 drivers/net/xilinx_emaclite.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c
index 7e9a31ea982d..5862bf0a7e2d 100644
--- a/drivers/net/xilinx_emaclite.c
+++ b/drivers/net/xilinx_emaclite.c
@@ -93,7 +93,7 @@ struct xemaclite {
 	struct mii_dev *bus;
 };
 
-static u32 etherrxbuff[PKTSIZE_ALIGN/4]; /* Receive buffer */
+static uchar etherrxbuff[PKTSIZE_ALIGN]; /* Receive buffer */
 
 static void xemaclite_alignedread(u32 *srcptr, void *destptr, u32 bytecount)
 {
@@ -528,8 +528,8 @@ try_again:
 	out_be32(ack, reg);
 
 	debug("Packet receive from 0x%p, length %dB\n", addr, length);
-	net_process_received_packet((uchar *)etherrxbuff, length);
-	return 0;
+	*packetp = etherrxbuff;
+	return length;
 }
 
 static int emaclite_miiphy_read(struct mii_dev *bus, int addr,
-- 
1.9.1



More information about the U-Boot mailing list