mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 12:41:32 +00:00
fs/fat: Don't multiply fatsize with sector size
Bugfix: Here at this place we need the fat size in sectors not bytes. This was found during code review when adding support for storage devices with blocksizes != 512. Signed-off-by: Egbert Eich <eich@suse.com>
This commit is contained in:
parent
d7ea4d4d4c
commit
bc8d98713f
1 changed files with 0 additions and 1 deletions
|
@ -120,7 +120,6 @@ static int flush_fat_buffer(fsdata *mydata)
|
|||
__u8 *bufptr = mydata->fatbuf;
|
||||
__u32 startblock = mydata->fatbufnum * FATBUFBLOCKS;
|
||||
|
||||
fatlength *= mydata->sect_size;
|
||||
startblock += mydata->fat_sect;
|
||||
|
||||
if (getsize > fatlength)
|
||||
|
|
Loading…
Add table
Reference in a new issue