A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

headers: Don't blindly include <inttypes.h> in files used by ASM

Causes things to go boom with newer toolchains.

Change-Id: Ibd00edc9ea16aae8115b63ebce08ac920b0608a2

+7 -2
+1
firmware/export/pl080.h
··· 24 24 /* 25 25 * ARM PrimeCell PL080 Multiple Master DMA controller 26 26 */ 27 + #include <stdint.h> 27 28 #include <stddef.h> 28 29 #include <stdbool.h> 29 30
+3 -1
firmware/export/s5l8700.h
··· 19 19 * 20 20 ****************************************************************************/ 21 21 22 - #include <inttypes.h> 22 + #ifndef ASM 23 + #include <stdint.h> 24 + #endif 23 25 24 26 #define REG8_PTR_T volatile uint8_t * 25 27 #define REG16_PTR_T volatile uint16_t *
+3 -1
firmware/export/s5l8702.h
··· 22 22 #ifndef __S5L8702_H__ 23 23 #define __S5L8702_H__ 24 24 25 - #include <inttypes.h> 25 + #ifndef ASM 26 + #include <stdint.h> 27 + #endif 26 28 27 29 #define REG8_PTR_T volatile uint8_t * 28 30 #define REG16_PTR_T volatile uint16_t *