summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/config.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index fc33601355..408e9a28a7 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -210,8 +210,13 @@
210#define CPU_COLDFIRE 210#define CPU_COLDFIRE
211#endif 211#endif
212 212
213/* define for all cpus from PP family */
214#if (CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5024)
215#define CPU_PP
216#endif
217
213/* define for all cpus from ARM family */ 218/* define for all cpus from ARM family */
214#if (CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) || (CONFIG_CPU == PP5024) 219#if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440)
215#define CPU_ARM 220#define CPU_ARM
216#endif 221#endif
217 222