diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c index dae14373296a0ed6337eb3aa3030bf99b6d5a6a8..2bb038b98cc4a1434516f717829d3c6415167ab1 100644 --- a/drivers/net/gianfar.c +++ b/drivers/net/gianfar.c @@ -1207,7 +1207,8 @@ static int gfar_enet_open(struct net_device *dev) static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb) { struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN); - cacheable_memzero(fcb, GMAC_FCB_LEN); + + memset(fcb, 0, GMAC_FCB_LEN); return fcb; }