[nrf528xx] fix Keil compilation error in nrf_ficr.h (#4744)

This commit is contained in:
Piotr Koziar
2020-03-27 08:57:03 -07:00
committed by GitHub
parent d7fcb38386
commit e4dd1da67d
-4
View File
@@ -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;
}