P2P: Add 60 GHz in channel to frequency conversion

Add regulatory classes for the 60GHz band.

Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: Boris Sorochkin <qca_bsoroc@qca.qualcomm.com>
This commit is contained in:
Boris Sorochkin 2014-03-23 19:02:12 +02:00 committed by Jouni Malinen
parent fc3f1d1b4d
commit f7454c97df

View file

@ -98,6 +98,10 @@ int p2p_channel_to_freq(int op_class, int channel)
if (channel < 36 || channel > 161)
return -1;
return 5000 + 5 * channel;
case 180: /* 60 GHz band, channels 1..4 */
if (channel < 1 || channel > 4)
return -1;
return 56160 + 2160 * channel;
}
return -1;
}