summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-06-28 16:43:51 -0600
committerTom Rini <[email protected]>2025-07-08 13:11:12 -0600
commita591af1123ab280d480ce92cd15871de1e222a51 (patch)
treefd556f1e62b64184beaab92330d53dea7d487dfc /include
parent7788df3e926186093bdd7710fea2062899cae9c1 (diff)
include/spl_gpio.h: Audit include list
This file does not need <asm/gpio.h> so remove it. This file does however need <linux/types.h> so add that in. This also shows that arch/arm/mach-rockchip/rk3399/rk3399.c and board/lg/star/star.c were indirectly getting <asm/gpio.h> from here, so add <asm/gpio.h> to them. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/spl_gpio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spl_gpio.h b/include/spl_gpio.h
index b33261a6485..a8aed4d77b9 100644
--- a/include/spl_gpio.h
+++ b/include/spl_gpio.h
@@ -9,7 +9,7 @@
#ifndef __SPL_GPIO_H
#define __SPL_GPIO_H
-#include <asm/gpio.h>
+#include <linux/types.h>
/*
* The functions listed here should be implemented in the SoC GPIO driver.