cns3xxx: use kmalloc instead of kzalloc for ethernet rx buffers
authorFelix Fietkau <nbd@openwrt.org>
Sun, 10 Mar 2013 18:25:20 +0000 (18:25 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 10 Mar 2013 18:25:20 +0000 (18:25 +0000)
SVN-Revision: 35943

target/linux/cns3xxx/files/drivers/net/ethernet/cavium/cns3xxx_eth.c

index 7309d9ea779cdc72d193a63b7d8c91d012721b0d..4bf7a9888ae4c67a1315696a2483fd171f3ea066 100644 (file)
@@ -514,7 +514,7 @@ static void cns3xxx_alloc_rx_buf(struct sw *sw, int received)
        unsigned int phys;
 
        for (received += rx_ring->alloc_count; received > 0; received--) {
-               buf = kzalloc(RX_SEGMENT_ALLOC_SIZE, GFP_ATOMIC);
+               buf = kmalloc(RX_SEGMENT_ALLOC_SIZE, GFP_ATOMIC);
                if (!buf)
                        break;