diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/gianfar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c index dae14373296a..2bb038b98cc4 100644 --- a/drivers/net/gianfar.c +++ b/drivers/net/gianfar.c | |||
@@ -1207,7 +1207,8 @@ static int gfar_enet_open(struct net_device *dev) | |||
1207 | static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb) | 1207 | static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb) |
1208 | { | 1208 | { |
1209 | struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN); | 1209 | struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN); |
1210 | cacheable_memzero(fcb, GMAC_FCB_LEN); | 1210 | |
1211 | memset(fcb, 0, GMAC_FCB_LEN); | ||
1211 | 1212 | ||
1212 | return fcb; | 1213 | return fcb; |
1213 | } | 1214 | } |