mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cpu/nrf5x_common: add whitespace to please linter
Fixes the "comma should be followed by whitespace" warning from `static-tests`.
This commit is contained in:
parent
63faa5f162
commit
a28003f0fa
@ -66,9 +66,9 @@ extern "C" {
|
||||
* The port definition is used (and zeroed) to suppress compiler warnings
|
||||
*/
|
||||
#if GPIO_COUNT > 1
|
||||
#define GPIO_PIN(x,y) ((x << 5) | y)
|
||||
#define GPIO_PIN(x, y) ((x << 5) | y)
|
||||
#else
|
||||
#define GPIO_PIN(x,y) ((x & 0) | y)
|
||||
#define GPIO_PIN(x, y) ((x & 0) | y)
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user