diff mbox series

[U-Boot,3/5] gpio: stm32f7: Move STM32_GPIOS_PER_BANK into gpio.h

Message ID 1543830774-19999-4-git-send-email-patrice.chotard@st.com
State Accepted
Commit b2f84e37e25c93c74a133ba57652291d771ab438
Delegated to: Tom Rini
Headers show
Series Update STM32 gpio and pinctrl drivers | expand

Commit Message

Patrice CHOTARD Dec. 3, 2018, 9:52 a.m. UTC
To allow access to this define by other driver, move
it into gpio.h

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

 arch/arm/include/asm/arch-stm32/gpio.h    | 2 ++
 arch/arm/mach-stm32mp/include/mach/gpio.h | 2 ++
 drivers/gpio/stm32f7_gpio.c               | 1 -
 3 files changed, 4 insertions(+), 1 deletion(-)

Comments

Tom Rini Dec. 7, 2018, 8:34 p.m. UTC | #1
On Mon, Dec 03, 2018 at 10:52:52AM +0100, Patrice Chotard wrote:

> To allow access to this define by other driver, move
> it into gpio.h
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/arch/arm/include/asm/arch-stm32/gpio.h b/arch/arm/include/asm/arch-stm32/gpio.h
index 8ba15b735596..570e80a6ba80 100644
--- a/arch/arm/include/asm/arch-stm32/gpio.h
+++ b/arch/arm/include/asm/arch-stm32/gpio.h
@@ -7,6 +7,8 @@ 
 #ifndef _GPIO_H_
 #define _GPIO_H_
 
+#define STM32_GPIOS_PER_BANK		16
+
 enum stm32_gpio_port {
 	STM32_GPIO_PORT_A = 0,
 	STM32_GPIO_PORT_B,
diff --git a/arch/arm/mach-stm32mp/include/mach/gpio.h b/arch/arm/mach-stm32mp/include/mach/gpio.h
index 46bef21f79f3..5ca76d21ff1e 100644
--- a/arch/arm/mach-stm32mp/include/mach/gpio.h
+++ b/arch/arm/mach-stm32mp/include/mach/gpio.h
@@ -8,6 +8,8 @@ 
 #define _STM32_GPIO_H_
 #include <asm/gpio.h>
 
+#define STM32_GPIOS_PER_BANK		16
+
 enum stm32_gpio_port {
 	STM32_GPIO_PORT_A = 0,
 	STM32_GPIO_PORT_B,
diff --git a/drivers/gpio/stm32f7_gpio.c b/drivers/gpio/stm32f7_gpio.c
index 55553c9477ff..34cdafa1e402 100644
--- a/drivers/gpio/stm32f7_gpio.c
+++ b/drivers/gpio/stm32f7_gpio.c
@@ -15,7 +15,6 @@ 
 #include <linux/errno.h>
 #include <linux/io.h>
 
-#define STM32_GPIOS_PER_BANK		16
 #define MODE_BITS(gpio_pin)		(gpio_pin * 2)
 #define MODE_BITS_MASK			3
 #define BSRR_BIT(gpio_pin, value)	BIT(gpio_pin + (value ? 0 : 16))