summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2007-02-17 23:22:37 +0000
committerMagnus Holmgren <magnushol@gmail.com>2007-02-17 23:22:37 +0000
commit2067fcc695852a5589d6dded27cde77e20380179 (patch)
tree4face0c925a271b5cdf25ca743b428c1a049790a /firmware/export
parentd52ee4c0d6f1f63a57365dbf83a1d6dc0266fc5d (diff)
downloadrockbox-2067fcc695852a5589d6dded27cde77e20380179.tar.gz
rockbox-2067fcc695852a5589d6dded27cde77e20380179.zip
Fix most (all?) CONFIG_LED warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/ata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/ata.h b/firmware/export/ata.h
index 915a71f536..697935cafc 100644
--- a/firmware/export/ata.h
+++ b/firmware/export/ata.h
@@ -47,7 +47,7 @@ extern int ata_init(void);
47extern int ata_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf); 47extern int ata_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf);
48extern int ata_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf); 48extern int ata_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf);
49extern void ata_spin(void); 49extern void ata_spin(void);
50#if CONFIG_LED == LED_REAL 50#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
51extern void ata_set_led_enabled(bool enabled); 51extern void ata_set_led_enabled(bool enabled);
52#endif 52#endif
53extern unsigned short* ata_get_identify(void); 53extern unsigned short* ata_get_identify(void);