Browse Source

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>
Boris Sorochkin 11 years ago
parent
commit
f7454c97df
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/p2p/p2p_utils.c

+ 4 - 0
src/p2p/p2p_utils.c

@@ -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;
 }