]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - common/cmd_fat.c
* CVS add missing files
[karo-tx-uboot.git] / common / cmd_fat.c
index 7bd4b519508430b7beacbaff55133ddb871c6715..150a2ea67c889193de688ff7e71895aeabab57cc 100644 (file)
@@ -62,6 +62,12 @@ block_dev_desc_t *get_dev (char* ifname, int dev)
                extern block_dev_desc_t *  mmc_get_dev(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;
 }