diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-08-31 18:24:24 +0200 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-09-01 14:21:34 +0200 |
commit | 36d375faf5cff98e8dca32aabbbb1ec6036437dd (patch) | |
tree | ba828554f9f7775e5970da69c298f599bf300fc7 /board/miromico/hammerhead | |
parent | abdde2b1d570b1ee77606bf783444fcddf7f0965 (diff) | |
download | u-boot-imx-36d375faf5cff98e8dca32aabbbb1ec6036437dd.zip u-boot-imx-36d375faf5cff98e8dca32aabbbb1ec6036437dd.tar.gz u-boot-imx-36d375faf5cff98e8dca32aabbbb1ec6036437dd.tar.bz2 |
avr32: Use board_postclk_init instead of gclk_init
Replace the avr32-specific gclk_init() board hook with the standard
board_postclk_init() hook which is supposed to run at the same point
during initialization.
Provide a dummy weak alias for boards not implementing this hook. The
cost of this is:
- 2 bytes for the dummy function (retal 0)
- 2 bytes for each unnecessary function call (short rcall)
which is a pretty small price to pay for avoiding lots of #ifdef
clutter. In this particular case, all boards probably end up slightly
smaller because we avoid the conditional checking if the gclk_init
symbol is NULL.
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'board/miromico/hammerhead')
-rw-r--r-- | board/miromico/hammerhead/hammerhead.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/miromico/hammerhead/hammerhead.c b/board/miromico/hammerhead/hammerhead.c index bf432cb..8670527 100644 --- a/board/miromico/hammerhead/hammerhead.c +++ b/board/miromico/hammerhead/hammerhead.c @@ -100,9 +100,10 @@ void board_init_info(void) gd->bd->bi_phy_id[0] = 0x01; } -void gclk_init(void) +int board_postclk_init(void) { /* Hammerhead boards uses GCLK3 as 25MHz output to ethernet PHY */ gclk_enable_output(3, PORTMUX_DRIVE_LOW); gclk_set_rate(3, GCLK_PARENT_OSC0, 25000000); + return 0; } |