From d7732faad3104369fca72c071818b95ddb3e35db Mon Sep 17 00:00:00 2001 From: Oleksandr G Zhadan Date: Tue, 28 Apr 2015 13:59:50 -0400 Subject: powerpc/mpc85xx: Fix compiling error for common/cmd_gpio.c To replicate: 1. add to include/configs/p1_p2_rdb_pc.h "#define CONFIG_CMD_GPIO" 2. run `make P1020RDB-PC_defconfig` 3. run CROSS_COMPILE=powerpc-linux- make and you will get: common/built-in.o: In function `do_gpio': u-boot/common/cmd_gpio.c:186: undefined reference to `gpio_request' u-boot/common/cmd_gpio.c:194: undefined reference to `gpio_direction_input' u-boot/common/cmd_gpio.c:195: undefined reference to `gpio_get_value' u-boot/common/cmd_gpio.c:200: undefined reference to `gpio_get_value' u-boot/common/cmd_gpio.c:203: undefined reference to `gpio_direction_output' u-boot/common/cmd_gpio.c:209: undefined reference to `gpio_free Signed-off-by: Michael Durrant Signed-off-by: Oleksandr G Zhadan Reviewed-by: York Sun --- arch/powerpc/include/asm/arch-mpc85xx/gpio.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/powerpc/include/asm/arch-mpc85xx/gpio.h') diff --git a/arch/powerpc/include/asm/arch-mpc85xx/gpio.h b/arch/powerpc/include/asm/arch-mpc85xx/gpio.h index 8beed30..71794a8 100644 --- a/arch/powerpc/include/asm/arch-mpc85xx/gpio.h +++ b/arch/powerpc/include/asm/arch-mpc85xx/gpio.h @@ -12,4 +12,6 @@ #ifndef __ASM_ARCH_MX85XX_GPIO_H #define __ASM_ARCH_MX85XX_GPIO_H +#include + #endif -- cgit v1.1