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

Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- 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) /* GPIO3_24 */
DECLARE_GLOBAL_DATA_PTR;

Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- 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) /* GPIO4_9 */ +#define MX51EVK_LCD_5V IMX_GPIO_NR(4, 10) /* GPIO4_10 */ +#define MX51EVK_LCD_BACKLIGHT IMX_GPIO_NR(3, 4) /* GPIO3_4 */
DECLARE_GLOBAL_DATA_PTR;

On 21/08/2012 19:26, Fabio Estevam wrote:
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
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) /* GPIO4_9 */ +#define MX51EVK_LCD_5V IMX_GPIO_NR(4, 10) /* GPIO4_10 */ +#define MX51EVK_LCD_BACKLIGHT IMX_GPIO_NR(3, 4) /* GPIO3_4 */
DECLARE_GLOBAL_DATA_PTR;
Acked-by: Stefano Babic sbabic@denx.de
Best regards, Stefano Babic

Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- 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) /* GPIO2_31 */
DECLARE_GLOBAL_DATA_PTR;

On 21/08/2012 19:26, Fabio Estevam wrote:
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
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) /* GPIO2_31 */
DECLARE_GLOBAL_DATA_PTR;
Acked-by: Stefano Babic sbabic@denx.de
Best regards, Stefano Babic

On 8/21/2012 10:26 AM, Fabio Estevam wrote:
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
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) /* GPIO3_24 */
DECLARE_GLOBAL_DATA_PTR;
I'd kill the now redundant comment as well. But I don't mind if you don't.

On 21/08/2012 19:26, Fabio Estevam wrote:
Use IMX_GPIO_NR macro.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
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) /* GPIO3_24 */
DECLARE_GLOBAL_DATA_PTR;
Acked-by: Stefano Babic sbabic@denx.de
Best regards, Stefano Babic
participants (3)
-
Fabio Estevam
-
Stefano Babic
-
Troy Kisky