diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2010-11-28 15:22:51 +0000 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2010-11-28 15:22:51 +0000 |
| commit | 1db3dfdd759476ae4930958ec775fd2009674091 (patch) | |
| tree | d3f4ca8200a049ecdad0452ca4bb322e452b2ae6 /firmware/drivers/fat.c | |
| parent | 4063389bffe63052da2e78413b0cc1f530733db3 (diff) | |
| download | rockbox-1db3dfdd759476ae4930958ec775fd2009674091.zip rockbox-1db3dfdd759476ae4930958ec775fd2009674091.tar.gz rockbox-1db3dfdd759476ae4930958ec775fd2009674091.tar.bz2 rockbox-1db3dfdd759476ae4930958ec775fd2009674091.tar.xz | |
Accept FS#11774 by Michael Hohmuth (with some own modifications to #ifdef conditions)
Unmount all filesystems before connecting USB. This ensures that all filehandles are closed, which avoids possible filesystem corruption
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28693 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/fat.c')
| -rw-r--r-- | firmware/drivers/fat.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index cff11d2..a99341d 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -479,7 +479,6 @@ int fat_mount(IF_MV2(int volume,) IF_MD2(int drive,) long startsector) return 0; } -#ifdef HAVE_HOTSWAP int fat_unmount(int volume, bool flush) { int rc; @@ -518,7 +517,6 @@ int fat_unmount(int volume, bool flush) #endif return rc; } -#endif /* #ifdef HAVE_HOTSWAP */ void fat_recalc_free(IF_MV_NONVOID(int volume)) { |