diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-07 07:09:49 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-07 07:09:49 +0000 |
| commit | d681087ad07568e2c102fc235f10bd2a8047bb27 (patch) | |
| tree | 35e725dfe4cbd847208d9796832e2a1afe1a715e | |
| parent | c21e7e7f622d977e48c0ff3ef595a5c6432bb8f1 (diff) | |
| download | rockbox-d681087ad07568e2c102fc235f10bd2a8047bb27.zip rockbox-d681087ad07568e2c102fc235f10bd2a8047bb27.tar.gz rockbox-d681087ad07568e2c102fc235f10bd2a8047bb27.tar.bz2 rockbox-d681087ad07568e2c102fc235f10bd2a8047bb27.tar.xz | |
Correct CPU type handling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5202 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/ata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c index 62b4fb6..ce136a4 100644 --- a/firmware/drivers/ata.c +++ b/firmware/drivers/ata.c @@ -21,7 +21,7 @@ #include "kernel.h" #include "thread.h" #include "led.h" -#include "sh7034.h" +#include "cpu.h" #include "system.h" #include "debug.h" #include "panic.h" @@ -30,7 +30,7 @@ #include "string.h" #include "hwcompat.h" -#if CONFIG_CPU == SCF5249 +#if CONFIG_CPU == MCF5249 /* don't use sh7034 assembler routines */ #define PREFER_C_READING |