diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2019-04-29 19:05:26 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2019-05-01 09:40:59 +0200 |
commit | 8c5805a21093dd2ad8a80d76f4af2788842df2b1 (patch) | |
tree | d85dc03948cfb404fb125fa2a31ebf7bd034034e | |
parent | c79bce16e52068b78ba366bd5610b52c54366c00 (diff) |
rockchip: rk3399: include gpio.h
After applying the series for debug_uart_init(), Travis-CI reports:
arch/arm/mach-rockchip/rk3399/rk3399.c:90:2: error: implicit declaration of function 'spl_gpio_set_pull' [-Werror=implicit-function-declaration]
spl_gpio_set_pull(&pmugrf->gpio0_p, GPIO(BANK_B, 2), GPIO_PULL_NORMAL);
^~~~~~~~~~~~~~~~~
This is caused by a missing header-file include. Fix it.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
-rw-r--r-- | arch/arm/mach-rockchip/rk3399/rk3399.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c index 4b11c86b70..a7ccd4f3ed 100644 --- a/arch/arm/mach-rockchip/rk3399/rk3399.c +++ b/arch/arm/mach-rockchip/rk3399/rk3399.c @@ -7,6 +7,7 @@ #include <spl_gpio.h> #include <asm/armv8/mmu.h> #include <asm/io.h> +#include <asm/arch-rockchip/gpio.h> #include <asm/arch-rockchip/grf_rk3399.h> #include <asm/arch-rockchip/hardware.h> |