[U-Boot] [PATCH v2 1/3] mx53loco: Use IMX_GPIO_NR macro

From: Fabio Estevam fabio.estevam@freescale.com
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- Changes since v1: - Remove unnecessary comment board/freescale/mx53loco/mx53loco.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c index 7cfb3f4..3a39c3e 100644 --- a/board/freescale/mx53loco/mx53loco.c +++ b/board/freescale/mx53loco/mx53loco.c @@ -42,7 +42,7 @@ #include <linux/fb.h> #include <ipu_pixfmt.h>
-#define MX53LOCO_LCD_POWER (2 * 32 + 24) /* GPIO3_24 */ +#define MX53LOCO_LCD_POWER IMX_GPIO_NR(3, 24)
DECLARE_GLOBAL_DATA_PTR;

From: Fabio Estevam fabio.estevam@freescale.com
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- Changes since v1: - Remove unnecessary comment board/freescale/mx51evk/mx51evk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/board/freescale/mx51evk/mx51evk.c b/board/freescale/mx51evk/mx51evk.c index 97c8a2c..651b506 100644 --- a/board/freescale/mx51evk/mx51evk.c +++ b/board/freescale/mx51evk/mx51evk.c @@ -39,9 +39,9 @@ #include <linux/fb.h> #include <ipu_pixfmt.h>
-#define MX51EVK_LCD_3V3 (3 * 32 + 9) /* GPIO4_9 */ -#define MX51EVK_LCD_5V (3 * 32 + 10) /* GPIO4_10 */ -#define MX51EVK_LCD_BACKLIGHT (2 * 32 + 4) /* GPIO3_4 */ +#define MX51EVK_LCD_3V3 IMX_GPIO_NR(4, 9) +#define MX51EVK_LCD_5V IMX_GPIO_NR(4, 10) +#define MX51EVK_LCD_BACKLIGHT IMX_GPIO_NR(3, 4)
DECLARE_GLOBAL_DATA_PTR;

From: Fabio Estevam fabio.estevam@freescale.com
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- Changes since v1: - Remove unnecessary comment board/freescale/mx53ard/mx53ard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/freescale/mx53ard/mx53ard.c b/board/freescale/mx53ard/mx53ard.c index 2d21584..688cff1 100644 --- a/board/freescale/mx53ard/mx53ard.c +++ b/board/freescale/mx53ard/mx53ard.c @@ -33,7 +33,7 @@ #include <fsl_esdhc.h> #include <asm/gpio.h>
-#define ETHERNET_INT (1 * 32 + 31) /* GPIO2_31 */ +#define ETHERNET_INT IMX_GPIO_NR(2, 31)
DECLARE_GLOBAL_DATA_PTR;

On 21/08/2012 22:01, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
Changes since v1:
- Remove unnecessary comment
board/freescale/mx53loco/mx53loco.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c index 7cfb3f4..3a39c3e 100644 --- a/board/freescale/mx53loco/mx53loco.c +++ b/board/freescale/mx53loco/mx53loco.c @@ -42,7 +42,7 @@ #include <linux/fb.h> #include <ipu_pixfmt.h>
-#define MX53LOCO_LCD_POWER (2 * 32 + 24) /* GPIO3_24 */ +#define MX53LOCO_LCD_POWER IMX_GPIO_NR(3, 24)
DECLARE_GLOBAL_DATA_PTR;
Applied (whole series) to u-boot-imx (after removing "Use IMX_GPIO_NR macro." as suggested by Troy), thanks.
Best regards, Stefano Babic
participants (2)
-
Fabio Estevam
-
Stefano Babic