diff mbox

[U-Boot,2/3] mx51evk: Use IMX_GPIO_NR macro

Message ID 1345569964-32107-2-git-send-email-fabio.estevam@freescale.com
State Changes Requested
Headers show

Commit Message

Fabio Estevam Aug. 21, 2012, 5:26 p.m. UTC
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(-)

Comments

Stefano Babic Aug. 22, 2012, 7:19 a.m. UTC | #1
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
diff mbox

Patch

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;