mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
[PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
eb41db6d22
commit
da04995c7d
1 changed files with 4 additions and 4 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue