net: emaclite: Let core to handle received packet
authorMichal Simek <michal.simek@xilinx.com>
Wed, 16 Dec 2015 09:52:39 +0000 (10:52 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Wed, 27 Jan 2016 14:55:52 +0000 (15:55 +0100)
Pass pointer to core to handle packet.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
drivers/net/xilinx_emaclite.c

index 7e9a31e..5862bf0 100644 (file)
@@ -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,