diff options
author | wdenk <wdenk> | 2004-02-26 23:46:20 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-02-26 23:46:20 +0000 |
commit | 80885a9d526b6b9666500d17ec7941b9dad8de44 (patch) | |
tree | f294ef9147fb7212a2072c614952a3417c53a89f /fs/fat | |
parent | 0c852a2886fb51222f8fb07e6cde3b72fa4e566d (diff) |
* Patch by Markus Pietrek, 24 Feb 2004:
NS9750 DevBoard added
* Patch by Pierre AUBERT, 24 Feb 2004
add USB support for MPC5200
* Patch by Steven Scholz, 24 Feb 2004:
- fix MII commands to use values from last command
* Patch by Torsten Demke, 24 Feb 2004:
Add support for the eXalion platform (SPSW-8240, F-30, F-300)
Diffstat (limited to 'fs/fat')
-rw-r--r-- | fs/fat/fat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/fat/fat.c b/fs/fat/fat.c index daa70349d27..6f1e57cbc9a 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -89,7 +89,8 @@ fat_register_device(block_dev_desc_t *dev_desc, int part_no) part_offset=0; } else { -#if (CONFIG_COMMANDS & CFG_CMD_IDE) || (CONFIG_COMMANDS & CFG_CMD_SCSI) +#if (CONFIG_COMMANDS & CFG_CMD_IDE) || (CONFIG_COMMANDS & CFG_CMD_SCSI) || \ + (CONFIG_COMMANDS & CFG_CMD_USB) disk_partition_t info; if(!get_partition_info(dev_desc, part_no, &info)) { part_offset = info.start; |