diff options
Diffstat (limited to 'common/cmd_fat.c')
-rw-r--r-- | common/cmd_fat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/cmd_fat.c b/common/cmd_fat.c index 7bd4b51..150a2ea 100644 --- a/common/cmd_fat.c +++ b/common/cmd_fat.c @@ -63,6 +63,12 @@ block_dev_desc_t *get_dev (char* ifname, int dev) return(mmc_get_dev(dev)); } #endif +#if defined(CONFIG_SYSTEMACE) + if (strcmp(ifname,"ace")==0) { + extern block_dev_desc_t * systemace_get_dev(int dev); + return(systemace_get_dev(dev)); + } +#endif return NULL; } |