1
0
Fork 0
forked from len0rd/rockbox

Update source files to include the header file for the functions they implement, to make sure the header and the implementation is consistent (and fix it for a case where it wasn't).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17275 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-04-28 10:22:05 +00:00
parent 8391526f79
commit a5d3029c82
9 changed files with 9 additions and 1 deletions

View file

@ -41,6 +41,7 @@
#include "splash.h" #include "splash.h"
#include "yesno.h" #include "yesno.h"
#include "cuesheet.h" #include "cuesheet.h"
#include "filetree.h"
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
#include "keyboard.h" #include "keyboard.h"
#endif #endif

View file

@ -30,6 +30,7 @@
#include "menu.h" #include "menu.h"
#include "logf.h" #include "logf.h"
#include "settings.h" #include "settings.h"
#include "logfdisp.h"
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
bool logfdisplay(void) bool logfdisplay(void)

View file

@ -27,6 +27,7 @@
#include "debug.h" #include "debug.h"
#include "logf.h" #include "logf.h"
#include "cuesheet.h" #include "cuesheet.h"
#include "metadata.h"
#if CONFIG_CODEC == SWCODEC #if CONFIG_CODEC == SWCODEC

View file

@ -39,6 +39,7 @@
#include "yesno.h" #include "yesno.h"
#include "filetypes.h" #include "filetypes.h"
#include "debug.h" #include "debug.h"
#include "playlist_catalog.h"
#define MAX_PLAYLISTS 400 #define MAX_PLAYLISTS 400
#define PLAYLIST_DISPLAY_COUNT 10 #define PLAYLIST_DISPLAY_COUNT 10

View file

@ -22,6 +22,7 @@
#include "thread.h" #include "thread.h"
#include "debug.h" #include "debug.h"
#include "system.h" #include "system.h"
#include "fmradio.h"
#if CONFIG_TUNER #if CONFIG_TUNER

View file

@ -22,6 +22,7 @@
#include "thread.h" #include "thread.h"
#include "debug.h" #include "debug.h"
#include "system.h" #include "system.h"
#include "i2c.h"
/* cute little functions, atomic read-modify-write */ /* cute little functions, atomic read-modify-write */

View file

@ -22,7 +22,7 @@
extern void i2c_init(void); extern void i2c_init(void);
extern void i2c_begin(void); extern void i2c_begin(void);
extern void i2c_end(void); extern void i2c_end(void);
extern int i2c_write(int device, unsigned char* buf, int count ); extern int i2c_write(int device, const unsigned char* buf, int count );
extern int i2c_read(int device, unsigned char* buf, int count ); extern int i2c_read(int device, unsigned char* buf, int count );
extern int i2c_readmem(int device, int address, unsigned char* buf, int count ); extern int i2c_readmem(int device, int address, unsigned char* buf, int count );
extern void i2c_outb(unsigned char byte); extern void i2c_outb(unsigned char byte);

View file

@ -26,6 +26,7 @@
#include "system.h" #include "system.h"
#include "cpu.h" #include "cpu.h"
#include "i2s.h"
/* TODO: Add in PP5002 defs */ /* TODO: Add in PP5002 defs */
#if CONFIG_CPU == PP5002 #if CONFIG_CPU == PP5002

View file

@ -22,6 +22,7 @@
#include "logf.h" #include "logf.h"
#include "audio.h" #include "audio.h"
#include "sound.h" #include "sound.h"
#include "pcm.h"
#ifdef HAVE_WM8751 #ifdef HAVE_WM8751
#define MROBE100_44100HZ (0x40|(0x11 << 1)|1) #define MROBE100_44100HZ (0x40|(0x11 << 1)|1)