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 /net/eth.c | |
| parent | 08f077da9298ff65cc6f85f90d2770000a1beee9 (diff) | |
| download | olio-uboot-2014.01-f9a109b3adc5e8647535357500e2a38f0558b5c2.tar.xz olio-uboot-2014.01-f9a109b3adc5e8647535357500e2a38f0558b5c2.zip | |
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 'net/eth.c')
| -rw-r--r-- | net/eth.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -68,8 +68,8 @@ static int __def_eth_init(bd_t *bis)  {  	return -1;  } -int cpu_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init"))); -int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init"))); +int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init"))); +int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));  extern int mv6436x_eth_initialize(bd_t *);  extern int mv6446x_eth_initialize(bd_t *); |