summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-09-23 11:39:21 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-09-23 11:39:21 +0000
commit040e80c3ad00ee9b100f97d510a0acd37489cb9b (patch)
treed4598c8370aba155380dbc98a05981397c31898c
parent2aee04366f2992a4a69d8a3d20f880d52a849cba (diff)
downloadrockbox-040e80c3ad00ee9b100f97d510a0acd37489cb9b.tar.gz
rockbox-040e80c3ad00ee9b100f97d510a0acd37489cb9b.zip
Now exports last_disk_activity, for auto-poweroff
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2373 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/ata.c2
-rw-r--r--firmware/drivers/ata.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c
index 2451a862ba..807d441351 100644
--- a/firmware/drivers/ata.c
+++ b/firmware/drivers/ata.c
@@ -98,7 +98,7 @@ static unsigned char delayed_sector[SECTOR_SIZE];
98static int delayed_sector_num; 98static int delayed_sector_num;
99 99
100static long last_user_activity = -1; 100static long last_user_activity = -1;
101static long last_disk_activity = -1; 101long last_disk_activity = -1;
102 102
103static int multisectors; /* number of supported multisectors */ 103static int multisectors; /* number of supported multisectors */
104static unsigned short identify_info[SECTOR_SIZE]; 104static unsigned short identify_info[SECTOR_SIZE];
diff --git a/firmware/drivers/ata.h b/firmware/drivers/ata.h
index da5c5e3e58..df4461e2f5 100644
--- a/firmware/drivers/ata.h
+++ b/firmware/drivers/ata.h
@@ -45,4 +45,6 @@ extern void ata_delayed_write(unsigned long sector, void* buf);
45extern void ata_flush(void); 45extern void ata_flush(void);
46extern void ata_spin(void); 46extern void ata_spin(void);
47 47
48extern long last_disk_activity;
49
48#endif 50#endif