mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
IAD210 board: fix ``"ALIGN" redefined'' warning.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
ad75631479
commit
a566466f17
1 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
#include <common.h>
|
||||
#include <mpc8xx.h>
|
||||
#include <commproc.h>
|
||||
|
@ -7,7 +6,7 @@
|
|||
#include <linux/stddef.h>
|
||||
|
||||
#define SYNC __asm__("sync")
|
||||
#define ALIGN(p, a) ((char *)(((uint32)(p)+(a)-1) & ~((uint32)(a)-1)))
|
||||
#define MY_ALIGN(p, a) ((char *)(((uint32)(p)+(a)-1) & ~((uint32)(a)-1)))
|
||||
|
||||
#define FALSE 1
|
||||
#define TRUE 0
|
||||
|
@ -160,7 +159,7 @@ int atmMemInit()
|
|||
g_atm.csram = &csram[0];
|
||||
memset(&(g_atm.csram), 0x00, g_atm.csram_size);
|
||||
|
||||
g_atm.int_reload_ptr = (uint32 *)ALIGN(g_atm.csram, 4);
|
||||
g_atm.int_reload_ptr = (uint32 *)MY_ALIGN(g_atm.csram, 4);
|
||||
g_atm.rbd_base_ptr = (struct atm_bd_t *)(g_atm.int_reload_ptr + NUM_INT_ENTRIES);
|
||||
g_atm.tbd_base_ptr = (struct atm_bd_t *)(g_atm.rbd_base_ptr + total_num_rbd);
|
||||
|
||||
|
|
Loading…
Reference in a new issue