UCANS32K146 board: s32k1xx_userleds.c style fix

This commit is contained in:
Jari van Ewijk 2021-09-21 14:56:53 +02:00 committed by David Sidrane
parent 4b24eca0cf
commit 107e80b61f

View File

@ -81,7 +81,9 @@ void board_userled(int led, bool ledon)
return;
}
s32k1xx_gpiowrite(ledcfg, !ledon); /* Invert output, an output of '0' illuminates the LED */
/* Invert output, an output of '0' illuminates the LED */
s32k1xx_gpiowrite(ledcfg, !ledon);
}
/****************************************************************************