Bluetooth: Controller: Rename drop to accept to avoid negations

Rename the variable drop to accept to avoid multiple use of
negations in the implementation.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2021-12-22 20:21:16 +05:30 committed by Carles Cufí
commit c706a095e8

View file

@ -6167,7 +6167,7 @@ static void le_per_adv_sync_report(struct pdu_data *pdu_data,
uint8_t hdr_len;
uint8_t *ptr;
int8_t rssi;
bool drop;
bool accept;
if (!(event_mask & BT_EVT_MASK_LE_META_EVENT) ||
(!(le_event_mask & BT_EVT_MASK_LE_PER_ADVERTISING_REPORT) &&
@ -6303,8 +6303,9 @@ no_ext_hdr:
/* FIXME: Use correct data status else chain PDU report will
* be filtered out.
*/
drop = !ftr->sync_rx_enabled ||
(sync->nodups && dup_found(PDU_ADV_TYPE_EXT_IND,
accept = ftr->sync_rx_enabled &&
(!sync->nodups ||
!dup_found(PDU_ADV_TYPE_EXT_IND,
sync->peer_id_addr_type,
sync->peer_id_addr,
DUP_EXT_ADV_MODE_PERIODIC,
@ -6313,7 +6314,7 @@ no_ext_hdr:
* CONFIG_BT_CTLR_SYNC_PERIODIC_ADI_SUPPORT
*/
} else {
drop = !ftr->sync_rx_enabled;
accept = ftr->sync_rx_enabled;
}
data_len_max = ADV_REPORT_EVT_MAX_LEN -
@ -6322,7 +6323,7 @@ no_ext_hdr:
evt_buf = buf;
if ((le_event_mask & BT_EVT_MASK_LE_PER_ADVERTISING_REPORT) && !drop) {
if ((le_event_mask & BT_EVT_MASK_LE_PER_ADVERTISING_REPORT) && accept) {
do {
struct bt_hci_evt_le_per_advertising_report *sep;
uint8_t data_len_frag;