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.

rk27xx: Fix compilation with -fno-common

Change-Id: I9fbe85fed23fe7b1b3fd88aa5e8a4a63c509fa62

+4 -2
+2
firmware/target/arm/rk27xx/ata-nand-rk27xx.c
··· 29 29 #include "ftl-target.h" 30 30 #include "nand-target.h" 31 31 32 + uint32_t ftl_banks; 33 + const struct nand_device_info_type* ftl_nand_type; 32 34 /* This file provides only STUBS for now */ 33 35 34 36 /** static, private data **/
+2 -2
firmware/target/arm/rk27xx/ftl-target.h
··· 31 31 #endif 32 32 33 33 /* Pointer to an info structure regarding the flash type used */ 34 - const struct nand_device_info_type* ftl_nand_type; 34 + extern const struct nand_device_info_type* ftl_nand_type; 35 35 36 36 /* Number of banks we detected a chip on */ 37 - uint32_t ftl_banks; 37 + extern uint32_t ftl_banks; 38 38 39 39 uint32_t ftl_init(void); 40 40 uint32_t ftl_read(uint32_t sector, uint32_t count, void* buffer);