1
0
Fork 0
forked from len0rd/rockbox

Moved microsd_int declaration from system-pp502x.c to ata-sd-target.h

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17855 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-06-28 19:36:21 +00:00
parent b50b38ae58
commit 604447c475
2 changed files with 3 additions and 1 deletions

View file

@ -22,6 +22,7 @@
#define ATA_SD_TARGET_H #define ATA_SD_TARGET_H
#include "inttypes.h" #include "inttypes.h"
#include "hotswap.h"
typedef struct typedef struct
{ {
@ -45,6 +46,7 @@ bool card_detect_target(void);
#ifdef HAVE_HOTSWAP #ifdef HAVE_HOTSWAP
void card_enable_monitoring_target(bool on); void card_enable_monitoring_target(bool on);
void microsd_int(void);
#endif #endif
#endif #endif

View file

@ -23,6 +23,7 @@
#include "i2s.h" #include "i2s.h"
#include "i2c-pp.h" #include "i2c-pp.h"
#include "as3514.h" #include "as3514.h"
#include "ata-sd-target.h"
#ifdef HAVE_USBSTACK #ifdef HAVE_USBSTACK
#include "usb_drv.h" #include "usb_drv.h"
#endif #endif
@ -32,7 +33,6 @@ extern void TIMER1(void);
extern void TIMER2(void); extern void TIMER2(void);
extern void ipod_mini_button_int(void); /* iPod Mini 1st gen only */ extern void ipod_mini_button_int(void); /* iPod Mini 1st gen only */
extern void ipod_4g_button_int(void); /* iPod 4th gen and higher only */ extern void ipod_4g_button_int(void); /* iPod 4th gen and higher only */
extern void microsd_int(void); /* Sansa E200 and C200 */
#ifdef SANSA_E200 #ifdef SANSA_E200
extern void button_int(void); extern void button_int(void);
extern void clickwheel_int(void); extern void clickwheel_int(void);