Don't redefine netdev_for_each_mc_addr()

It's already defined in CentOS 2.6.18-238.19.1.el5 kernel.  Use
parentheses around dev to be safer.


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@4168 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
proski 2011-10-07 21:14:47 +00:00
parent 5890429464
commit bd86fad851
1 changed files with 3 additions and 1 deletions

View File

@ -78,8 +78,10 @@
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,34)
#ifndef netdev_for_each_mc_addr
#define netdev_for_each_mc_addr(mclist, dev) \
for (mclist = dev->mc_list; mclist; mclist = mclist->next)
for (mclist = (dev)->mc_list; mclist; mclist = mclist->next)
#endif
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)