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.

ata: we shouldn't ry to do FLUSH_CACHE_EXT if HAVE_LBA48 is not defined

Change-Id: Ic3da25a144bfd7ae41ee2e012a90e38aacac4df9

+2
+2
firmware/drivers/ata.c
··· 245 245 246 246 if (!canflush) { 247 247 return 0; 248 + #ifdef HAVE_LBA48 248 249 } else if (ata_lba48 && identify_info[83] & (1 << 13)) { 249 250 cmd = CMD_FLUSH_CACHE_EXT; /* Flag, optional, ATA-6 and up, for use with LBA48 devices */ 251 + #endif 250 252 } else if (identify_info[83] & (1 << 12)) { 251 253 cmd = CMD_FLUSH_CACHE; /* Flag, mandatory, ATA-6 and up */ 252 254 } else if (identify_info[80] >= (1 << 5)) { /* Use >= instead of '&' because bits lower than the latest standard we support don't have to be set */