From: Stefan Roese <sr@denx.de>
Date: Wed, 21 Feb 2007 12:44:34 +0000 (+0100)
Subject: [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
X-Git-Tag: v2025.01-rc5-pxa1908~22838
X-Git-Url: http://git.dujemihanovic.xyz/posts?a=commitdiff_plain;h=da04995c7dc6772013a9a0dc5c767f190c402478;p=u-boot.git

[PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)

Signed-off-by: Stefan Roese <sr@denx.de>
---

diff --git a/drivers/systemace.c b/drivers/systemace.c
index 3bd2ea999c..1d1be12520 100644
--- a/drivers/systemace.c
+++ b/drivers/systemace.c
@@ -57,13 +57,13 @@
 #if !defined(__BIG_ENDIAN)
 #define ace_readw(off) ((readb(CFG_SYSTEMACE_BASE+off)<<8) | \
                         (readb(CFG_SYSTEMACE_BASE+off+1)))
-#define ace_write(val, off) {writeb(val>>8, CFG_SYSTEMACE_BASE+off); \
-                             writeb(val, CFG_SYSTEMACE_BASE+off+1);}
+#define ace_writew(val, off) {writeb(val>>8, CFG_SYSTEMACE_BASE+off); \
+			      writeb(val, CFG_SYSTEMACE_BASE+off+1);}
 #else
 #define ace_readw(off) ((readb(CFG_SYSTEMACE_BASE+off)) | \
                         (readb(CFG_SYSTEMACE_BASE+off+1)<<8))
-#define ace_write(val, off) {writeb(val, CFG_SYSTEMACE_BASE+off); \
-                             writeb(val>>8, CFG_SYSTEMACE_BASE+off+1);}
+#define ace_writew(val, off) {writeb(val, CFG_SYSTEMACE_BASE+off); \
+			      writeb(val>>8, CFG_SYSTEMACE_BASE+off+1);}
 #endif
 #else
 #define ace_readw(off) (in16(CFG_SYSTEMACE_BASE+off))