diff options
author | Simon Glass <sjg@chromium.org> | 2011-09-21 12:40:03 (GMT) |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-10-27 19:56:29 (GMT) |
commit | 3e00dbdf24250548bdf702a79713befae5640723 (patch) | |
tree | c0dd7c0840de9ff70199e4f234e2c681a8f437fd /board/nvidia/common/board.h | |
parent | 03c609f69b12dca47b9422595fdde29be1fb35c9 (diff) | |
download | u-boot-fsl-qoriq-3e00dbdf24250548bdf702a79713befae5640723.tar.xz |
tegra2: Clean up board code a little
This removes clock_init() and pinmux_init() which are names better suited
to those respective modules. By moving board_init_f() to the bottom of the
file we can remove the need for so many functions in the board.h header file.
The only clock/pinmux/gpio init we need to do prior to relocation is
for the UART.
Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board/nvidia/common/board.h')
-rw-r--r-- | board/nvidia/common/board.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/nvidia/common/board.h b/board/nvidia/common/board.h index 4334c02..d649eb7 100644 --- a/board/nvidia/common/board.h +++ b/board/nvidia/common/board.h @@ -25,9 +25,6 @@ #define _BOARD_H_ void tegra2_start(void); -void clock_init(void); -void pinmux_init(void); -void gpio_init(void); void gpio_config_uart(void); int tegra2_mmc_init(int dev_index, int bus_width); |