diff options
author | Stephen Warren <swarren@nvidia.com> | 2014-03-21 12:28:52 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2014-04-17 08:41:05 -0700 |
commit | 07bbd48b4785f28b41ceeab4337d7690837e6ec1 (patch) | |
tree | f548847555472a943bf3b5623fdf404f4e8919d5 /board | |
parent | 6ac1e542c6ff8413698e59d83ae11ab51f59e8c2 (diff) | |
download | u-boot-imx-07bbd48b4785f28b41ceeab4337d7690837e6ec1.zip u-boot-imx-07bbd48b4785f28b41ceeab4337d7690837e6ec1.tar.gz u-boot-imx-07bbd48b4785f28b41ceeab4337d7690837e6ec1.tar.bz2 |
ARM: tegra: prototype pinmux_init() in board.h
pinmux_init() is a board-level function, not a pinmux driver function.
Move the prototype to a board header rather than the driver header.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/nvidia/common/board.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index 3b18e28..d3d7bbd 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -48,6 +48,12 @@ const struct tegra_sysinfo sysinfo = { CONFIG_TEGRA_BOARD_STRING }; +void __pinmux_init(void) +{ +} + +void pinmux_init(void) __attribute__((weak, alias("__pinmux_init"))); + void __pin_mux_usb(void) { } @@ -176,9 +182,7 @@ void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init"))); int board_early_init_f(void) { -#if !defined(CONFIG_TEGRA20) pinmux_init(); -#endif board_init_uart_f(); /* Initialize periph GPIOs */ |