This is an automated email from Gerrit.

"Tomas Vanek <van...@fbl.cz>" just uploaded a new patch set to Gerrit, which 
you can find at https://review.openocd.org/c/openocd/+/8109

-- gerrit

commit 030e447358cda5188867f04bd56626d08004b653
Author: Tomas Vanek <van...@fbl.cz>
Date:   Mon Jan 22 12:13:46 2024 +0100

    flash/nor/nrf5: use BIT() instead of << operator
    
    for features flags.
    
    Change-Id: I8bff0f5fac41c50180c847f36c6d2a075eca32ca
    Signed-off-by: Tomas Vanek <van...@fbl.cz>

diff --git a/src/flash/nor/nrf5.c b/src/flash/nor/nrf5.c
index 35fa6d1429..3f451a76c4 100644
--- a/src/flash/nor/nrf5.c
+++ b/src/flash/nor/nrf5.c
@@ -17,6 +17,7 @@
 #include <target/armv7m.h>
 #include <helper/types.h>
 #include <helper/time_support.h>
+#include <helper/bits.h>
 
 /* Both those values are constant across the current spectrum ofr nRF5 devices 
*/
 #define WATCHDOG_REFRESH_REGISTER       0x40010600
@@ -94,10 +95,10 @@ struct nrf52_ficr_info {
 };
 
 enum nrf5_features {
-       NRF5_FEATURE_SERIES_51  = 1 << 0,
-       NRF5_FEATURE_SERIES_52  = 1 << 1,
-       NRF5_FEATURE_BPROT              = 1 << 2,
-       NRF5_FEATURE_ACL_PROT   = 1 << 3,
+       NRF5_FEATURE_SERIES_51  = BIT(0),
+       NRF5_FEATURE_SERIES_52  = BIT(1),
+       NRF5_FEATURE_BPROT              = BIT(2),
+       NRF5_FEATURE_ACL_PROT   = BIT(3),
 };
 
 struct nrf5_device_spec {

-- 

Reply via email to