From c5ebab70d86fde000440fae1f467bf24d96f36b4 Mon Sep 17 00:00:00 2001 From: zhanghaipeng Date: Thu, 11 Dec 2025 11:00:11 +0800 Subject: [PATCH] fix(ble/bluedroid): Remove duplicate filter_policy in ext_conn_v2 HCI cmd --- components/bt/host/bluedroid/stack/hcic/hciblecmds.c | 1 - 1 file changed, 1 deletion(-) diff --git a/components/bt/host/bluedroid/stack/hcic/hciblecmds.c b/components/bt/host/bluedroid/stack/hcic/hciblecmds.c index 9ddbc6271aa..b6f48f5642f 100644 --- a/components/bt/host/bluedroid/stack/hcic/hciblecmds.c +++ b/components/bt/host/bluedroid/stack/hcic/hciblecmds.c @@ -1731,7 +1731,6 @@ BOOLEAN btsnd_hcic_ble_create_ext_conn_v2(tHCI_CreatExtConn *p_conn) UINT8_TO_STREAM(pp, p_conn->adv_handle); UINT8_TO_STREAM(pp, p_conn->subevent); UINT8_TO_STREAM(pp, p_conn->filter_policy); - UINT8_TO_STREAM(pp, p_conn->filter_policy); UINT8_TO_STREAM(pp, p_conn->own_addr_type); UINT8_TO_STREAM(pp, p_conn->peer_addr_type); BDADDR_TO_STREAM(pp, p_conn->peer_addr);