diff options
Diffstat (limited to 'drivers/net/lguest_net.c')
-rw-r--r-- | drivers/net/lguest_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/lguest_net.c b/drivers/net/lguest_net.c index 7f34c92bcd86..abce2ee8430a 100644 --- a/drivers/net/lguest_net.c +++ b/drivers/net/lguest_net.c | |||
@@ -235,9 +235,9 @@ static int lguestnet_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
235 | struct lguestnet_info *info = netdev_priv(dev); | 235 | struct lguestnet_info *info = netdev_priv(dev); |
236 | /* Extract the destination ethernet address from the packet. */ | 236 | /* Extract the destination ethernet address from the packet. */ |
237 | const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; | 237 | const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; |
238 | DECLARE_MAC_BUF(mac); | ||
238 | 239 | ||
239 | pr_debug("%s: xmit %02x:%02x:%02x:%02x:%02x:%02x\n", | 240 | pr_debug("%s: xmit %s\n", dev->name, print_mac(mac, dest)); |
240 | dev->name, dest[0],dest[1],dest[2],dest[3],dest[4],dest[5]); | ||
241 | 241 | ||
242 | /* If it's a multicast packet, we broadcast to everyone. That's not | 242 | /* If it's a multicast packet, we broadcast to everyone. That's not |
243 | * very efficient, but there are very few applications which actually | 243 | * very efficient, but there are very few applications which actually |