mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
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 */
|
/* ok, we assume we are on a PBR only */
|
||||||
cur_part = 1;
|
cur_part = 1;
|
||||||
part_offset=0;
|
part_offset=0;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
#if (defined(CONFIG_CMD_IDE) || \
|
#if (defined(CONFIG_CMD_IDE) || \
|
||||||
defined(CONFIG_CMD_SCSI) || \
|
defined(CONFIG_CMD_SCSI) || \
|
||||||
defined(CONFIG_CMD_USB) || \
|
defined(CONFIG_CMD_USB) || \
|
||||||
@ -105,7 +104,8 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
|
|||||||
cur_part = 1;
|
cur_part = 1;
|
||||||
part_offset = 0;
|
part_offset = 0;
|
||||||
} else {
|
} 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;
|
return -1;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
@ -124,6 +124,7 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no)
|
|||||||
cur_part = 1;
|
cur_part = 1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user