Fix missing brace error in fs/fat/fat.c
[pointed out by Roderik Wildenburg] Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
6c33c78557
commit
bf1060ea4f
@ -89,8 +89,7 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
|
||||
/* ok, we assume we are on a PBR only */
|
||||
cur_part = 1;
|
||||
part_offset=0;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
#if (defined(CONFIG_CMD_IDE) || \
|
||||
defined(CONFIG_CMD_SCSI) || \
|
||||
defined(CONFIG_CMD_USB) || \
|
||||
@ -105,7 +104,8 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
|
||||
cur_part = 1;
|
||||
part_offset = 0;
|
||||
} else {
|
||||
printf ("** Partition %d not valid on device %d **\n", part_no, dev_desc->dev);
|
||||
printf ("** Partition %d not valid on device %d **\n",
|
||||
part_no, dev_desc->dev);
|
||||
return -1;
|
||||
}
|
||||
#else
|
||||
@ -124,6 +124,7 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
|
||||
cur_part = 1;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user