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

@ -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