Commit 7d46e88c authored by Jeroen Vreeken's avatar Jeroen Vreeken Committed by Stephen Hemminger

[hamradio bpqether] fix ancient debug line

removes a verry old debug line from the bpqethernet driver that
only fills logs.
parent fdf36d4e
......@@ -196,12 +196,8 @@ static int bpq_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_ty
eth = (struct ethhdr *)skb->mac.raw;
if (!(bpq->acpt_addr[0] & 0x01) &&
memcmp(eth->h_source, bpq->acpt_addr, ETH_ALEN)) {
if (net_ratelimit())
printk(KERN_DEBUG "bpqether: wrong dest %s\n",
bpq_print_ethaddr(eth->h_source));
memcmp(eth->h_source, bpq->acpt_addr, ETH_ALEN))
goto drop_unlock;
}
if (skb_cow(skb, sizeof(struct ethhdr)))
goto drop_unlock;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment