1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/stm32/periph/usbdev_fs: small cleanup of comment formatting

This commit is contained in:
Gunar Schorcht 2022-10-12 13:53:22 +02:00
parent dde72ad41b
commit a76297c55e

View File

@ -246,9 +246,10 @@ static void _set_ep_in_status(uint16_t *val, uint16_t mask)
static void _set_ep_out_status(uint16_t *val, uint16_t mask)
{
/* status endpoints bits can only be toggled, writing 0
as no effect. Thus, check which bits should be set
then XOR it with their current value */
/* status endpoints bits can only be toggled, writing 0
* as no effect. Thus, check which bits should be set
* then XOR it with their current value */
if (mask & USB_EPRX_DTOG1) {
*val ^= USB_EPRX_DTOG1;
}