HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41333 )
Change subject: src/soc/cavium/cn81xx: Remove direct 'include <soc/gpio.h>' ......................................................................
src/soc/cavium/cn81xx: Remove direct 'include <soc/gpio.h>'
Don't directly include <soc/gpio.h>. All code using GPIO features should always and only include <gpio.h>, which should indirectly include the SoC-specific <soc/gpio.h>.
Change-Id: I30048836de1a2897dd9b8fc099204d9f0f19439e Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/soc/cavium/cn81xx/gpio.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/41333/1
diff --git a/src/soc/cavium/cn81xx/gpio.c b/src/soc/cavium/cn81xx/gpio.c index 4e29a57..3f0a9a1 100644 --- a/src/soc/cavium/cn81xx/gpio.c +++ b/src/soc/cavium/cn81xx/gpio.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h> -#include <soc/gpio.h> +#include <gpio.h> #include <device/mmio.h> #include <endian.h> #include <soc/addressmap.h>