1
0
Fork 0
forked from len0rd/rockbox

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:
Boris Gjenero 2011-12-21 18:02:50 +00:00
parent 14c2e677fd
commit 6c97145e7d
12 changed files with 14 additions and 1 deletions

View file

@ -26,6 +26,7 @@
#include "audio.h"
#include "audiohw.h"
#include "sound.h"
#include "tsc2100.h"
const struct sound_settings_info audiohw_settings[] = {

View file

@ -30,6 +30,7 @@
#include "audio.h"
#include "audiohw.h"
#include "system.h"
#include "sound.h"
const struct sound_settings_info audiohw_settings[] = {
[SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25},

View file

@ -31,6 +31,7 @@
#include "wmcodec.h"
#include "audiohw.h"
#include "sound.h"
const struct sound_settings_info audiohw_settings[] = {
[SOUND_VOLUME] = {"dB", 0, 1, -90, 6, -25},

View file

@ -27,6 +27,7 @@
#include "audio.h"
/*#define LOGF_ENABLE*/
#include "logf.h"
#include "sound.h"
/* TODO: Define/refine an API for special hardware steps outside the
* main codec driver such as special GPIO handling. */

View file

@ -27,6 +27,7 @@
#include "usb-target.h"
#include "power.h"
#include "as3525.h"
#include "usb_drv.h"
static int usb_status = USB_EXTRACTED;

View file

@ -19,6 +19,8 @@
*
****************************************************************************/
#include "adc.h"
void adc_init(void)
{
}

View file

@ -19,6 +19,8 @@
*
****************************************************************************/
#include "lcd.h"
/* Update the display.
This must be called after all other LCD functions that change the display */
void lcd_update(void)

View file

@ -34,6 +34,7 @@
#include "wmcodec.h"
#ifdef HAVE_HARDWARE_BEEP
#include "misc.h"
static void beep_stop(void);
#endif

View file

@ -21,7 +21,7 @@
#include "config.h"
#include "jz4740.h"
#include "ata.h"
#include "nand.h"
//#include "ata-nand-target.h" /* TODO */
#include "nand_id.h"
#include "system.h"

View file

@ -24,6 +24,7 @@
#include "system.h"
#include "jz4740.h"
#include "logf.h"
#include "i2c.h"
/*
* Jz4740 I2C routines.

View file

@ -26,6 +26,7 @@
#include "panic.h"
#include "system.h"
#include "kernel.h"
#include "power.h"
#define EXTENDED_EXCEPTION_DESC 0
#if EXTENDED_EXCEPTION_DESC

View file

@ -25,6 +25,7 @@
#include "hwcompat.h"
#include "system.h"
#include "usb.h"
#include "usb-target.h"
int usb_detect(void)
{