summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-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