Skip to content

Commit bad67c7

Browse files
committed
Keep formatting consistent
1 parent f542c3d commit bad67c7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

portable/GCC/ARM_CM0/portmacro.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ typedef unsigned long UBaseType_t;
6969
/* 32-bit tick type on a 32-bit architecture, so reads of the tick count do
7070
* not need to be guarded with a critical section. */
7171
#define portTICK_TYPE_IS_ATOMIC 1
72-
#elif (configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS)
73-
typedef uint64_t TickType_t;
74-
#define portMAX_DELAY (TickType_t)0xffffffffffffffffULL
72+
#elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
73+
typedef uint64_t TickType_t;
74+
#define portMAX_DELAY ( TickType_t ) 0xffffffffffffffffULL
7575
#else
7676
#error configTICK_TYPE_WIDTH_IN_BITS set to unsupported tick type width.
7777
#endif

portable/GCC/ARM_CM33_NTZ/non_secure/portmacrocommon.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ typedef unsigned long UBaseType_t;
8484
/* 32-bit tick type on a 32-bit architecture, so reads of the tick count do
8585
* not need to be guarded with a critical section. */
8686
#define portTICK_TYPE_IS_ATOMIC 1
87-
#elif (configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS)
88-
typedef uint64_t TickType_t;
89-
#define portMAX_DELAY (TickType_t)0xffffffffffffffffULL
87+
#elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
88+
typedef uint64_t TickType_t;
89+
#define portMAX_DELAY ( TickType_t ) 0xffffffffffffffffULL
9090
#else
9191
#error configTICK_TYPE_WIDTH_IN_BITS set to unsupported tick type width.
9292
#endif

0 commit comments

Comments
 (0)