summaryrefslogtreecommitdiff
path: root/firmware/include/disk_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/disk_cache.h')
-rw-r--r--firmware/include/disk_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/disk_cache.h b/firmware/include/disk_cache.h
index 79b2ccf2c6..9787c64aec 100644
--- a/firmware/include/disk_cache.h
+++ b/firmware/include/disk_cache.h
@@ -36,7 +36,7 @@ static inline void dc_unlock_cache(void)
36 mutex_unlock(&disk_cache_mutex); 36 mutex_unlock(&disk_cache_mutex);
37} 37}
38 38
39void * dc_cache_probe(IF_MV(int volume,) unsigned long secnum, 39void * dc_cache_probe(IF_MV(int volume,) sector_t secnum,
40 unsigned int *flags); 40 unsigned int *flags);
41void dc_dirty_buf(void *buf); 41void dc_dirty_buf(void *buf);
42void dc_discard_buf(void *buf); 42void dc_discard_buf(void *buf);
@@ -46,7 +46,7 @@ void dc_discard_all(IF_MV_NONVOID(int volume));
46void dc_init(void) INIT_ATTR; 46void dc_init(void) INIT_ATTR;
47 47
48/* in addition to filling, writeback is implemented by the client */ 48/* in addition to filling, writeback is implemented by the client */
49extern void dc_writeback_callback(IF_MV(int volume, ) unsigned long sector, 49extern void dc_writeback_callback(IF_MV(int volume, ) sector_t sector,
50 void *buf); 50 void *buf);
51 51
52 52