summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-10-07 07:09:49 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-10-07 07:09:49 +0000
commitd681087ad07568e2c102fc235f10bd2a8047bb27 (patch)
tree35e725dfe4cbd847208d9796832e2a1afe1a715e
parentc21e7e7f622d977e48c0ff3ef595a5c6432bb8f1 (diff)
downloadrockbox-d681087ad07568e2c102fc235f10bd2a8047bb27.tar.gz
rockbox-d681087ad07568e2c102fc235f10bd2a8047bb27.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c
index 62b4fb6d8c..ce136a4f96 100644
--- a/firmware/drivers/ata.c
+++ b/firmware/drivers/ata.c
@@ -21,7 +21,7 @@
21#include "kernel.h" 21#include "kernel.h"
22#include "thread.h" 22#include "thread.h"
23#include "led.h" 23#include "led.h"
24#include "sh7034.h" 24#include "cpu.h"
25#include "system.h" 25#include "system.h"
26#include "debug.h" 26#include "debug.h"
27#include "panic.h" 27#include "panic.h"
@@ -30,7 +30,7 @@
30#include "string.h" 30#include "string.h"
31#include "hwcompat.h" 31#include "hwcompat.h"
32 32
33#if CONFIG_CPU == SCF5249 33#if CONFIG_CPU == MCF5249
34 34
35/* don't use sh7034 assembler routines */ 35/* don't use sh7034 assembler routines */
36#define PREFER_C_READING 36#define PREFER_C_READING