diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-10-06 17:20:47 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-10-06 17:20:47 +0000 |
| commit | b41cd24bdacf26c9cfd290d7314a5c60d27ef113 (patch) | |
| tree | 6ee4e16b4c64742df74dc249cca7108b95697454 | |
| parent | 8b82407af7d9eb9a47173a4210f0c67c94df1caf (diff) | |
| download | rockbox-b41cd24bdacf26c9cfd290d7314a5c60d27ef113.zip rockbox-b41cd24bdacf26c9cfd290d7314a5c60d27ef113.tar.gz rockbox-b41cd24bdacf26c9cfd290d7314a5c60d27ef113.tar.bz2 rockbox-b41cd24bdacf26c9cfd290d7314a5c60d27ef113.tar.xz | |
include cpu header only if explicit CPU match
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5190 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/cpu.h b/firmware/export/cpu.h index c27405a..6afba20 100644 --- a/firmware/export/cpu.h +++ b/firmware/export/cpu.h @@ -20,6 +20,7 @@ #if CONFIG_CPU == SH7034 #include "sh7034.h" -#else +#endif +#if CONFIG_CPU == MCF5249 #include "mcf5249.h" #endif |