diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-04-20 11:08:46 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-04-28 01:01:39 +0200 |
commit | f9a109b3adc5e8647535357500e2a38f0558b5c2 (patch) | |
tree | 40ff3b55d9ea638f2effcb7456811cb271622fab /cpu/arm920t/at91rm9200/ether.c | |
parent | 08f077da9298ff65cc6f85f90d2770000a1beee9 (diff) | |
download | u-boot-imx-f9a109b3adc5e8647535357500e2a38f0558b5c2.zip u-boot-imx-f9a109b3adc5e8647535357500e2a38f0558b5c2.tar.gz u-boot-imx-f9a109b3adc5e8647535357500e2a38f0558b5c2.tar.bz2 |
Replace __attribute references with __attribute__
__attribute__ follows gcc's documented syntax and is generally more
common than __attribute. This change is only asthetic and should not
affect functionality.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'cpu/arm920t/at91rm9200/ether.c')
-rw-r--r-- | cpu/arm920t/at91rm9200/ether.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpu/arm920t/at91rm9200/ether.c b/cpu/arm920t/at91rm9200/ether.c index b00b948..d9d33a2 100644 --- a/cpu/arm920t/at91rm9200/ether.c +++ b/cpu/arm920t/at91rm9200/ether.c @@ -53,10 +53,11 @@ typedef struct { #if defined(CONFIG_CMD_NET) /* alignment as per Errata #11 (64 bytes) is insufficient! */ -rbf_t rbfdt[RBF_FRAMEMAX] __attribute((aligned(512))); +rbf_t rbfdt[RBF_FRAMEMAX] __attribute__((aligned(512))); rbf_t *rbfp; -unsigned char rbf_framebuf[RBF_FRAMEMAX][RBF_FRAMELEN] __attribute((aligned(4))); +unsigned char rbf_framebuf[RBF_FRAMEMAX][RBF_FRAMELEN] + __attribute__((aligned(4))); /* structure to interface the PHY */ AT91S_PhyOps PhyOps; |