From e4dd1da67d272ceb9ed193b0accb7bb88c68f4a5 Mon Sep 17 00:00:00 2001 From: Piotr Koziar <44554861+piotrkoziar@users.noreply.github.com> Date: Fri, 27 Mar 2020 16:57:03 +0100 Subject: [PATCH] [nrf528xx] fix Keil compilation error in nrf_ficr.h (#4744) --- third_party/NordicSemiconductor/nrfx/hal/nrf_ficr.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/third_party/NordicSemiconductor/nrfx/hal/nrf_ficr.h b/third_party/NordicSemiconductor/nrfx/hal/nrf_ficr.h index 40b569885..c5016d130 100644 --- a/third_party/NordicSemiconductor/nrfx/hal/nrf_ficr.h +++ b/third_party/NordicSemiconductor/nrfx/hal/nrf_ficr.h @@ -123,16 +123,12 @@ __STATIC_INLINE uint32_t nrf_ficr_nfc_tagheader_get(NRF_FICR_Type const * p_reg, switch(tagheader_id) { case 0: return p_reg->NFC.TAGHEADER0; - break; case 1: return p_reg->NFC.TAGHEADER1; - break; case 2: return p_reg->NFC.TAGHEADER2; - break; case 3: return p_reg->NFC.TAGHEADER3; - break; default: return 0; }