Commit 1bad3e44 authored by Chas Williams's avatar Chas Williams Committed by David S. Miller

[ATM]: Let upper layer k now lec supports multicast.

parent d0ab89f5
......@@ -617,6 +617,14 @@ static int lec_change_mtu(struct net_device *dev, int new_mtu)
return 0;
}
static void lec_set_multicast_list(struct net_device *dev)
{
/* by default, all multicast frames arrive over the bus.
* eventually support selective multicast service
*/
return;
}
static void
lec_init(struct net_device *dev)
{
......@@ -626,7 +634,7 @@ lec_init(struct net_device *dev)
dev->hard_start_xmit = lec_send_packet;
dev->get_stats = lec_get_stats;
dev->set_multicast_list = NULL;
dev->set_multicast_list = lec_set_multicast_list;
dev->do_ioctl = NULL;
printk("%s: Initialized!\n",dev->name);
return;
......
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