1
0
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:
Marian Buschsieweke 2023-11-23 09:10:55 +01:00
parent 63faa5f162
commit a28003f0fa
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6

View File

@ -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
/**