From: Jeff G. <jg...@po...> - 2005-09-16 07:08:18
|
James Ketrenos wrote: > diff --git a/include/net/ieee80211_crypt.h b/include/net/ieee80211_crypt.h > --- a/include/net/ieee80211_crypt.h > +++ b/include/net/ieee80211_crypt.h > @@ -25,6 +25,24 @@ > > #include <linux/skbuff.h> > > +#ifdef CONFIG_IEEE80211_WPA_MODULE > +#ifndef CONFIG_IEEE80211_WPA > +#define CONFIG_IEEE80211_WPA > +#endif > +#endif > + > +#ifdef CONFIG_IEEE80211_CRYPT_CCMP_MODULE > +#ifndef CONFIG_IEEE80211_CRYPT_CCMP > +#define CONFIG_IEEE80211_CRYPT_CCMP > +#endif > +#endif > + > +#ifdef CONFIG_IEEE80211_CRYPT_TKIP_MODULE > +#ifndef CONFIG_IEEE80211_CRYPT_TKIP > +#define CONFIG_IEEE80211_CRYPT_TKIP > +#endif > +#endif NAK: Kernel code should -never- mess with CONFIG_xxx symbols, except to test them. Jeff |