mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
firmware: fix missing includes in some firmware headers
Add includes for any types/macros we use in these headers. Change-Id: Icfcd7a58376c5738fe6562cdb3cdd7855df35c75
This commit is contained in:
parent
cebbbb9ea4
commit
4377d4b0fa
4 changed files with 4 additions and 1 deletions
|
|
@ -22,7 +22,7 @@
|
|||
#define BACKLIGHT_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
|
||||
#if !defined(BOOTLOADER)
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
#define PCM_INTERNAL_H
|
||||
|
||||
#include "config.h"
|
||||
#include "gcc_extensions.h" /* for FORCE_INLINE */
|
||||
|
||||
#ifdef HAVE_SW_VOLUME_CONTROL
|
||||
/* Default settings - architecture may have other optimal values */
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include <string.h> /* size_t */
|
||||
#include <inttypes.h> /* uint32_t */
|
||||
#include <stdbool.h>
|
||||
#include "config.h"
|
||||
|
||||
enum pcm_dma_status
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
#define _POWER_H_
|
||||
|
||||
#include "config.h"
|
||||
#include <stdbool.h>
|
||||
|
||||
#if CONFIG_CHARGING
|
||||
enum power_input_flags {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue