Bluetooth: controller: Fix disabled Prop. PHY Update for nRF51 series

Due to regression the option to enable PHY Update Procedure
on proprietary 2M PHY for nRF51 series was disable.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2019-02-09 07:10:09 +05:30 committed by Carles Cufí
parent 0437fd7aff
commit fd334a2aa5

View file

@ -308,7 +308,7 @@ config BT_CTLR_PHY
bool
depends on BT_PHY_UPDATE
select BT_CTLR_EXT_REJ_IND
default y if SOC_COMPATIBLE_NRF52X
default y if SOC_COMPATIBLE_NRF52X || BT_CTLR_PHY_2M_NRF
endif # BT_CONN
@ -375,15 +375,6 @@ config BT_CTLR_DATA_LENGTH_CLEAR
251 byte cleartext payloads in the Controller. Encrypted connections
are not supported.
if BT_CTLR_PHY
config BT_CTLR_PHY_2M
bool "2Mbps PHY Support"
depends on !SOC_SERIES_NRF51X || BT_CTLR_PHY_2M_NRF
default y
help
Enable support for Bluetooth 5.0 2Mbps PHY in the Controller.
config BT_CTLR_PHY_2M_NRF
bool "2Mbps Nordic Semiconductor PHY Support (Cleartext only)"
depends on SOC_SERIES_NRF51X
@ -392,7 +383,12 @@ config BT_CTLR_PHY_2M_NRF
Enable support for Nordic Semiconductor proprietary 2Mbps PHY in the
Controller. Encrypted connections are not supported.
endif # BT_CTLR_PHY
config BT_CTLR_PHY_2M
bool "2Mbps PHY Support"
depends on !SOC_SERIES_NRF51X || BT_CTLR_PHY_2M_NRF
default y
help
Enable support for Bluetooth 5.0 2Mbps PHY in the Controller.
config BT_CTLR_PHY_CODED
bool "Coded PHY Support"