powerpc/mpc85xx: Fix compiling error with DM_GPIO
P4080DS compilation fails with DM_GPIO enabled: drivers/gpio/gpio-uclass.c:355:5: error: redefinition of 'gpio_request' int gpio_request(unsigned gpio, const char *label) ^~~~~~~~~~~~ In file included from ./arch/powerpc/include/asm/arch/gpio.h:17:0, from ./arch/powerpc/include/asm/gpio.h:1, from drivers/gpio/gpio-uclass.c:16: ./arch/powerpc/include/asm/mpc85xx_gpio.h:68:19: note: previous definition of 'gpio_request' was here static inline int gpio_request(unsigned gpio, const char *label) ^~~~~~~~~~~~ Signed-off-by: Madalin Bucur <madalin.bucur@oss.nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
94472223c6
commit
9e998d5dc1
@ -6,6 +6,7 @@
|
||||
#ifndef POWERPC_ASM_MPC85XX_GPIO_H_
|
||||
#define POWERPC_ASM_MPC85XX_GPIO_H_
|
||||
|
||||
#ifndef CONFIG_DM_GPIO
|
||||
# include <asm/immap_85xx.h>
|
||||
|
||||
/*
|
||||
@ -110,5 +111,5 @@ static inline int gpio_is_valid(int gpio)
|
||||
{
|
||||
return (gpio >= 0) && (gpio < 32);
|
||||
}
|
||||
|
||||
#endif /* not CONFIG_DM_GPIO */
|
||||
#endif /* not POWERPC_ASM_MPC85XX_GPIO_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user