summaryrefslogtreecommitdiff
path: root/apps/plugins/alpine_cdc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/alpine_cdc.c')
-rw-r--r--apps/plugins/alpine_cdc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/alpine_cdc.c b/apps/plugins/alpine_cdc.c
index f23255aea6..dfffc3b3cd 100644
--- a/apps/plugins/alpine_cdc.c
+++ b/apps/plugins/alpine_cdc.c
@@ -34,7 +34,7 @@
34#include "plugin.h" 34#include "plugin.h"
35 35
36/* Only build for (correct) target */ 36/* Only build for (correct) target */
37#if CONFIG_CPU==SH7034 && !defined(HAVE_MMC) 37#if CONFIG_CPU==SH7034 && !(CONFIG_STORAGE & STORAGE_MMC)
38 38
39PLUGIN_HEADER 39PLUGIN_HEADER
40 40
@@ -1199,4 +1199,4 @@ enum plugin_status plugin_start(const struct plugin_api* api, const void* parame
1199 return (main(parameter)==0) ? PLUGIN_OK : PLUGIN_ERROR; 1199 return (main(parameter)==0) ? PLUGIN_OK : PLUGIN_ERROR;
1200} 1200}
1201 1201
1202#endif /* CONFIG_CPU==SH7034 && !defined(HAVE_MMC) */ 1202#endif /* CONFIG_CPU==SH7034 && !(CONFIG_STORAGE & STORAGE_MMC) */