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 /include/asm-sparc | |
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 'include/asm-sparc')
-rw-r--r-- | include/asm-sparc/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-sparc/types.h b/include/asm-sparc/types.h index 2cf974a..0a8a26c 100644 --- a/include/asm-sparc/types.h +++ b/include/asm-sparc/types.h @@ -42,7 +42,7 @@ typedef unsigned long long __u64; typedef struct { __u32 u[4]; -} __attribute((aligned(16))) vector128; +} __attribute__((aligned(16))) vector128; #ifdef __KERNEL__ /* |