Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Sansa Connect: fix a likely typo in busy wait loop in USB driver

GCC 9.5 issues a -Wmisleading-indentation warning due to an extra
semicolon at the end of the while loop. It does seem unintentional
since the loop is a busy wait, so remove the semicolon.

Change-Id: I83b8676cbf38434b8148c43906c6bba9c16d036e

+1 -1
+1 -1
firmware/target/arm/tms320dm320/sansa-connect/tnetv105_usb_drv.c
··· 214 214 VL_CTRL &= ~VLYNQ_CTL_RESET_MASK; 215 215 216 216 timeout = 0; 217 - while (!(VL_STAT & VLYNQ_STS_LINK_MASK) && timeout++ < 50); 217 + while (!(VL_STAT & VLYNQ_STS_LINK_MASK) && timeout++ < 50) 218 218 { 219 219 mdelay(40); 220 220 }