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.

remane hotswap.* to sdmmc.*. The contents have nothing at all to do with hotswapping things


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26598 a1c6a512-1295-4272-9138-f99709370657

+15 -17
+1 -1
apps/debug_menu.c
··· 64 64 #include "mas.h" 65 65 #include "eeprom_24cxx.h" 66 66 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD) 67 - #include "hotswap.h" 67 + #include "sdmmc.h" 68 68 #endif 69 69 #if (CONFIG_STORAGE & STORAGE_ATA) 70 70 #include "ata.h"
-1
apps/root_menu.c
··· 40 40 41 41 #ifdef HAVE_HOTSWAP 42 42 #include "storage.h" 43 - #include "hotswap.h" 44 43 #include "dir.h" 45 44 #endif 46 45 /* gui api */
+1 -1
firmware/SOURCES
··· 179 179 storage.c 180 180 drivers/fat.c 181 181 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD) 182 - hotswap.c 182 + sdmmc.c 183 183 #endif 184 184 #endif /* SIMULATOR */ 185 185
+1 -1
firmware/common/disk.c
··· 23 23 #include "debug.h" 24 24 #include "fat.h" 25 25 #ifdef HAVE_HOTSWAP 26 - #include "hotswap.h" 26 + #include "sdmmc.h" /* for card_enable_monitoring() */ 27 27 #include "dir.h" /* for release_dirs() */ 28 28 #include "file.h" /* for release_files() */ 29 29 #endif
+1 -1
firmware/drivers/ata_mmc.c
··· 21 21 #include <stdbool.h> 22 22 #include "mmc.h" 23 23 #include "ata_mmc.h" 24 - #include "hotswap.h" 24 + #include "sdmmc.h" 25 25 #include "ata_idle_notify.h" 26 26 #include "kernel.h" 27 27 #include "thread.h"
+1 -1
firmware/drivers/sd.c
··· 21 21 22 22 #include "config.h" 23 23 #include "logf.h" 24 - #include "hotswap.h" 24 + #include "sdmmc.h" 25 25 #include "storage.h" 26 26 27 27 static const unsigned char sd_mantissa[] = { /* *10 */
+2 -2
firmware/export/hotswap.h firmware/export/sdmmc.h
··· 18 18 * KIND, either express or implied. 19 19 * 20 20 ****************************************************************************/ 21 - #ifndef __HOTSWAP_H__ 22 - #define __HOTSWAP_H__ 21 + #ifndef __SDMMC_H__ 22 + #define __SDMMC_H__ 23 23 24 24 #include <stdbool.h> 25 25
+1 -1
firmware/hotswap.c firmware/sdmmc.c
··· 23 23 #if (CONFIG_STORAGE & STORAGE_MMC) 24 24 #include "ata_mmc.h" 25 25 #else 26 - #include "hotswap.h" 26 + #include "sdmmc.h" 27 27 #endif 28 28 29 29 /* helper function to extract n (<=32) bits from an arbitrary position.
+1 -1
firmware/target/arm/as3525/sd-as3525.c
··· 26 26 #include "fat.h" 27 27 #include "thread.h" 28 28 #include "led.h" 29 - #include "hotswap.h" 29 + #include "sdmmc.h" 30 30 #include "system.h" 31 31 #include "cpu.h" 32 32 #include <stdio.h>
+1 -1
firmware/target/arm/as3525/sd-as3525v2.c
··· 24 24 #include "fat.h" 25 25 #include "thread.h" 26 26 #include "led.h" 27 - #include "hotswap.h" 27 + #include "sdmmc.h" 28 28 #include "system.h" 29 29 #include "kernel.h" 30 30 #include "cpu.h"
+1 -1
firmware/target/arm/ata-sd-pp.c
··· 20 20 ****************************************************************************/ 21 21 #include "config.h" /* for HAVE_MULTIDRIVE */ 22 22 #include "fat.h" 23 - #include "hotswap.h" 23 + #include "sdmmc.h" 24 24 #ifdef HAVE_HOTSWAP 25 25 #include "sd-pp-target.h" 26 26 #endif
+1 -1
firmware/target/arm/s3c2440/sd-s3c2440.c
··· 31 31 #include "uart-s3c2440.h" 32 32 #endif 33 33 #ifdef HAVE_HOTSWAP 34 - #include "hotswap.h" 34 + #include "sdmmc.h" 35 35 #include "disk.h" 36 36 #include "fat.h" 37 37 #endif
+1 -1
firmware/target/arm/tcc780x/sd-tcc780x.c
··· 22 22 #include "sd.h" 23 23 #include "system.h" 24 24 #include <string.h> 25 - #include "hotswap.h" 25 + #include "sdmmc.h" 26 26 #include "storage.h" 27 27 #include "led.h" 28 28 #include "thread.h"
+1 -1
firmware/target/mips/ingenic_jz47xx/ata-sd-jz4740.c
··· 27 27 #include "disk.h" 28 28 #include "fat.h" 29 29 #include "led.h" 30 - #include "hotswap.h" 30 + #include "sdmmc.h" 31 31 #include "logf.h" 32 32 #include "sd.h" 33 33 #include "system.h"
+1 -1
firmware/target/mips/ingenic_jz47xx/onda_vx767/ata-sd-target.h
··· 23 23 #define ATA_SD_TARGET_H 24 24 25 25 #include "inttypes.h" 26 - #include "hotswap.h" 26 + #include "sdmmc.h" 27 27 #include "jz4740.h" 28 28 29 29 int _sd_read_sectors(unsigned long start, int count, void* buf);
-1
firmware/usbstack/usb_storage.c
··· 26 26 /*#define LOGF_ENABLE*/ 27 27 #include "logf.h" 28 28 #include "storage.h" 29 - #include "hotswap.h" 30 29 #include "disk.h" 31 30 /* Needed to get at the audio buffer */ 32 31 #include "audio.h"