|
@@ -3135,9 +3135,9 @@ static uint32_t set_first_connection_operating_channel(
|
|
|
set_value = set_value << 8;
|
|
|
|
|
|
/*
|
|
|
- * Store the channel number of 1st channel at bits 7-0
|
|
|
- * of the bit vector
|
|
|
- */
|
|
|
+ * Store the channel number of 1st channel at bits 7-0
|
|
|
+ * of the bit vector
|
|
|
+ */
|
|
|
return set_value | operating_channel;
|
|
|
}
|
|
|
|
|
@@ -3171,16 +3171,16 @@ static uint32_t set_second_connection_operating_channel(
|
|
|
hdd_info("Second connection channel No.:%d and quota:%dms",
|
|
|
operating_channel, set_value);
|
|
|
/*
|
|
|
- * Now move the time quota and channel number of the
|
|
|
- * 1st adapter to bits 23-16 and bits 15-8 of the bit
|
|
|
- * vector, respectively.
|
|
|
- */
|
|
|
+ * Now move the time quota and channel number of the
|
|
|
+ * 1st adapter to bits 23-16 and bits 15-8 of the bit
|
|
|
+ * vector, respectively.
|
|
|
+ */
|
|
|
set_value = set_value << 8;
|
|
|
|
|
|
/*
|
|
|
- * Set the channel number for 2nd MCC vdev at bits
|
|
|
- * 7-0 of set_value
|
|
|
- */
|
|
|
+ * Set the channel number for 2nd MCC vdev at bits
|
|
|
+ * 7-0 of set_value
|
|
|
+ */
|
|
|
return set_value | operating_channel;
|
|
|
}
|
|
|
|