diff options
author | Helmut Raiger <helmut.raiger@hale.at> | 2011-10-20 04:19:47 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-27 21:53:59 (GMT) |
commit | 9660e442de66e7a80513b30e5226eeec73b9c17a (patch) | |
tree | b304d3e1d8eaf3c11401ae8b2c50a0e70c5fce15 /board/imx31_phycore | |
parent | deb5ca80275e8cfa74d5680b41204e08a095eca5 (diff) | |
download | u-boot-9660e442de66e7a80513b30e5226eeec73b9c17a.tar.xz |
cosmetic: s/BOARD_LATE_INIT/CONFIG_BOARD_LATE_INIT
This renames BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT.
Along the way it removes some leftover
#define BOARD_LATE_INIT 1
and adds some basic documentation for board specific
callbacks in README.
Signed-off-by: Helmut Raiger <helmut.raiger@hale.at>
Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/imx31_phycore')
-rw-r--r-- | board/imx31_phycore/imx31_phycore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/imx31_phycore/imx31_phycore.c b/board/imx31_phycore/imx31_phycore.c index 773900e..47f1a8d 100644 --- a/board/imx31_phycore/imx31_phycore.c +++ b/board/imx31_phycore/imx31_phycore.c @@ -74,7 +74,7 @@ int board_early_init_f(void) return 0; } -#ifdef BOARD_LATE_INIT +#ifdef CONFIG_BOARD_LATE_INIT int board_late_init(void) { #ifdef CONFIG_S6E63D6 |