Skip to content

Commit a28003f

Browse files
committed
cpu/nrf5x_common: add whitespace to please linter
Fixes the "comma should be followed by whitespace" warning from `static-tests`.
1 parent 63faa5f commit a28003f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpu/nrf5x_common/include/periph_cpu_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ extern "C" {
6666
* The port definition is used (and zeroed) to suppress compiler warnings
6767
*/
6868
#if GPIO_COUNT > 1
69-
#define GPIO_PIN(x,y) ((x << 5) | y)
69+
#define GPIO_PIN(x, y) ((x << 5) | y)
7070
#else
71-
#define GPIO_PIN(x,y) ((x & 0) | y)
71+
#define GPIO_PIN(x, y) ((x & 0) | y)
7272
#endif
7373

7474
/**

0 commit comments

Comments
 (0)