diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-02-11 20:09:52 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-03-20 22:39:12 +0100 |
commit | 9c150102bc1de375d36d97a1cc2dd0e9639b15df (patch) | |
tree | 83bd0206a829ce1efdcbf0542109913f467014f8 /board/tqc/tqm8xx/tqm8xx.c | |
parent | 92b50ffef978f05858a0ff4cbe88430bc51a28a2 (diff) | |
download | u-boot-imx-9c150102bc1de375d36d97a1cc2dd0e9639b15df.zip u-boot-imx-9c150102bc1de375d36d97a1cc2dd0e9639b15df.tar.gz u-boot-imx-9c150102bc1de375d36d97a1cc2dd0e9639b15df.tar.bz2 |
boards: get mac address from env and move load_sernum_ethaddr() to board init
The environment is the canonical storage location of the mac address, so
we're killing off the global data location and moving everything to
querying the env directly.
Rather than have common ppc code call a board-specific function like
load_sernum_ethaddr(), have each board call it in its own board-specific
misc_init_r() function.
The boards that get converted here are:
- kup4k/kup4x
- pcs440ep
- tqm8xx
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
CC: Ben Warren <biggerbadderben@gmail.com>
CC: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/tqc/tqm8xx/tqm8xx.c')
-rw-r--r-- | board/tqc/tqm8xx/tqm8xx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/tqc/tqm8xx/tqm8xx.c b/board/tqc/tqm8xx/tqm8xx.c index e065d69..f92c598 100644 --- a/board/tqc/tqm8xx/tqm8xx.c +++ b/board/tqc/tqm8xx/tqm8xx.c @@ -449,11 +449,14 @@ int board_early_init_r (void) #ifdef CONFIG_MISC_INIT_R +extern void load_sernum_ethaddr(void); int misc_init_r (void) { volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR; volatile memctl8xx_t *memctl = &immap->im_memctl; + load_sernum_ethaddr(); + #ifdef CONFIG_SYS_OR_TIMING_FLASH_AT_50MHZ int scy, trlx, flash_or_timing, clk_diff; |