include/nuttx/net/netdev.h: Fix a copy-paste error in previous commit.

This commit is contained in:
Gregory Nutt 2018-11-03 07:15:37 -06:00
parent 863f617262
commit 46cf69c93e
1 changed files with 3 additions and 8 deletions

View File

@ -347,15 +347,10 @@ struct net_driver_s
/* Multicast group support */
#ifdef CONFIG_NET_IGMP
/* IGMP group list */
sq_queue_t d_igmp_grplist;
sq_queue_t d_igmp_grplist; /* IGMP group list */
#endif
#ifdef CONFIG_NET_MCASTGROUP
/* MLD group list */
sq_queue_t d_mld_grplist;
#ifdef CONFIG_NET_MLD
sq_queue_t d_mld_grplist; /* MLD group list */
#endif
#ifdef CONFIG_NETDEV_STATISTICS