diff options
Diffstat (limited to 'net/802/garp.c')
-rw-r--r-- | net/802/garp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/802/garp.c b/net/802/garp.c index 9ed7c0e7dc17..941f2a324d3a 100644 --- a/net/802/garp.c +++ b/net/802/garp.c | |||
@@ -576,7 +576,7 @@ int garp_init_applicant(struct net_device *dev, struct garp_application *appl) | |||
576 | if (!app) | 576 | if (!app) |
577 | goto err2; | 577 | goto err2; |
578 | 578 | ||
579 | err = dev_mc_add(dev, appl->proto.group_address, ETH_ALEN, 0); | 579 | err = dev_mc_add(dev, appl->proto.group_address); |
580 | if (err < 0) | 580 | if (err < 0) |
581 | goto err3; | 581 | goto err3; |
582 | 582 | ||
@@ -616,7 +616,7 @@ void garp_uninit_applicant(struct net_device *dev, struct garp_application *appl | |||
616 | garp_pdu_queue(app); | 616 | garp_pdu_queue(app); |
617 | garp_queue_xmit(app); | 617 | garp_queue_xmit(app); |
618 | 618 | ||
619 | dev_mc_delete(dev, appl->proto.group_address, ETH_ALEN, 0); | 619 | dev_mc_del(dev, appl->proto.group_address); |
620 | kfree(app); | 620 | kfree(app); |
621 | garp_release_port(dev); | 621 | garp_release_port(dev); |
622 | } | 622 | } |