From fc479e03e065bbd02e96d6c7f9213447a2b37647 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Tue, 6 Dec 2016 12:55:31 +0100 Subject: [PATCH] Bluetooth: controller: Use SERIES config instead of NRF52 In preparation for the new Nordic MDK and nRF52840 IC support we switch to using the SERIES config instead of the old "NRF52" macro that will be deprecated in the new MDK. JIRA: ZEP-1418 Change-Id: I563f025c9db9b7497116c5af23814d95c720f836 Signed-off-by: Vinayak Chettimada Signed-off-by: Carles Cufi --- subsys/bluetooth/controller/hal/radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/controller/hal/radio.c b/subsys/bluetooth/controller/hal/radio.c index 9b56643ffb9..bffffa8f520 100644 --- a/subsys/bluetooth/controller/hal/radio.c +++ b/subsys/bluetooth/controller/hal/radio.c @@ -25,7 +25,7 @@ #if defined(CONFIG_SOC_SERIES_NRF51X) #define RADIO_PDU_LEN_MAX (BIT(5) - 1) -#elif defined(NRF52) +#elif defined(CONFIG_SOC_SERIES_NRF52X) #define RADIO_PDU_LEN_MAX (BIT(8) - 1) #else #error "Platform not defined."