From 01941377ff0ef1fa23fdfdc25162d020257d54dc Mon Sep 17 00:00:00 2001 From: Lukasz Majewski Date: Sun, 9 Jun 2019 22:54:40 +0200 Subject: [PATCH] gpio: Add missing parenthesis to the GPIO_TO_PORT define Add missing parenthesis to the GPIO_TO_PORT macro. Signed-off-by: Lukasz Majewski Reviewed-by: Peng Fan --- drivers/gpio/mxc_gpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/mxc_gpio.c b/drivers/gpio/mxc_gpio.c index 8bd30c75b2..64ab7a303f 100644 --- a/drivers/gpio/mxc_gpio.c +++ b/drivers/gpio/mxc_gpio.c @@ -31,7 +31,7 @@ struct mxc_bank_info { }; #ifndef CONFIG_DM_GPIO -#define GPIO_TO_PORT(n) (n / 32) +#define GPIO_TO_PORT(n) ((n) / 32) /* GPIO port description */ static unsigned long gpio_ports[] = { -- 2.25.1