On Thu, May 1, 2014 at 9:36 PM, Krishna Chaitanya
<[email protected]> wrote:
>
>
> On May 1, 2014 2:01 PM, "Arend van Spriel" <[email protected]> wrote:
> >
> > Hi Johannes,
> >
> > I was debugging issue with hostapd failing on setting channel when I came across this piece of code in chan.c:545:cfg80211_chandef_usable():
> >
> > if (width > 20)
> > prohibited_flags |= IEEE80211_CHAN_NO_OFDM;
> >
> > /* 5 and 10 MHz are only defined for the OFDM PHY */
> > if (width < 20)
> > prohibited_flags |= IEEE80211_CHAN_NO_OFDM;
> >
> > I suspect the first if statement to be wrong, but what should it be?
>
> Looks ok to me. Basically it says that only 20MHz has a possibility of both OFDM and DSSS.
Adding the list.