mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Add missing includes found using -Wmissing-declarations.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31396 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
14c2e677fd
commit
6c97145e7d
12 changed files with 14 additions and 1 deletions
|
|
@ -26,6 +26,7 @@
|
||||||
#include "audio.h"
|
#include "audio.h"
|
||||||
|
|
||||||
#include "audiohw.h"
|
#include "audiohw.h"
|
||||||
|
#include "sound.h"
|
||||||
#include "tsc2100.h"
|
#include "tsc2100.h"
|
||||||
|
|
||||||
const struct sound_settings_info audiohw_settings[] = {
|
const struct sound_settings_info audiohw_settings[] = {
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@
|
||||||
#include "audio.h"
|
#include "audio.h"
|
||||||
#include "audiohw.h"
|
#include "audiohw.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
#include "sound.h"
|
||||||
|
|
||||||
const struct sound_settings_info audiohw_settings[] = {
|
const struct sound_settings_info audiohw_settings[] = {
|
||||||
[SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25},
|
[SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25},
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@
|
||||||
|
|
||||||
#include "wmcodec.h"
|
#include "wmcodec.h"
|
||||||
#include "audiohw.h"
|
#include "audiohw.h"
|
||||||
|
#include "sound.h"
|
||||||
|
|
||||||
const struct sound_settings_info audiohw_settings[] = {
|
const struct sound_settings_info audiohw_settings[] = {
|
||||||
[SOUND_VOLUME] = {"dB", 0, 1, -90, 6, -25},
|
[SOUND_VOLUME] = {"dB", 0, 1, -90, 6, -25},
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@
|
||||||
#include "audio.h"
|
#include "audio.h"
|
||||||
/*#define LOGF_ENABLE*/
|
/*#define LOGF_ENABLE*/
|
||||||
#include "logf.h"
|
#include "logf.h"
|
||||||
|
#include "sound.h"
|
||||||
|
|
||||||
/* TODO: Define/refine an API for special hardware steps outside the
|
/* TODO: Define/refine an API for special hardware steps outside the
|
||||||
* main codec driver such as special GPIO handling. */
|
* main codec driver such as special GPIO handling. */
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@
|
||||||
#include "usb-target.h"
|
#include "usb-target.h"
|
||||||
#include "power.h"
|
#include "power.h"
|
||||||
#include "as3525.h"
|
#include "as3525.h"
|
||||||
|
#include "usb_drv.h"
|
||||||
|
|
||||||
static int usb_status = USB_EXTRACTED;
|
static int usb_status = USB_EXTRACTED;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "adc.h"
|
||||||
|
|
||||||
void adc_init(void)
|
void adc_init(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "lcd.h"
|
||||||
|
|
||||||
/* Update the display.
|
/* Update the display.
|
||||||
This must be called after all other LCD functions that change the display */
|
This must be called after all other LCD functions that change the display */
|
||||||
void lcd_update(void)
|
void lcd_update(void)
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@
|
||||||
#include "wmcodec.h"
|
#include "wmcodec.h"
|
||||||
|
|
||||||
#ifdef HAVE_HARDWARE_BEEP
|
#ifdef HAVE_HARDWARE_BEEP
|
||||||
|
#include "misc.h"
|
||||||
static void beep_stop(void);
|
static void beep_stop(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "jz4740.h"
|
#include "jz4740.h"
|
||||||
#include "ata.h"
|
#include "nand.h"
|
||||||
//#include "ata-nand-target.h" /* TODO */
|
//#include "ata-nand-target.h" /* TODO */
|
||||||
#include "nand_id.h"
|
#include "nand_id.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "jz4740.h"
|
#include "jz4740.h"
|
||||||
#include "logf.h"
|
#include "logf.h"
|
||||||
|
#include "i2c.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Jz4740 I2C routines.
|
* Jz4740 I2C routines.
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
#include "panic.h"
|
#include "panic.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "kernel.h"
|
#include "kernel.h"
|
||||||
|
#include "power.h"
|
||||||
|
|
||||||
#define EXTENDED_EXCEPTION_DESC 0
|
#define EXTENDED_EXCEPTION_DESC 0
|
||||||
#if EXTENDED_EXCEPTION_DESC
|
#if EXTENDED_EXCEPTION_DESC
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
#include "hwcompat.h"
|
#include "hwcompat.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "usb.h"
|
#include "usb.h"
|
||||||
|
#include "usb-target.h"
|
||||||
|
|
||||||
int usb_detect(void)
|
int usb_detect(void)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue