]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
udoo: neo: Fix indentation
authorFabio Estevam <fabio.estevam@nxp.com>
Mon, 2 Jan 2017 10:44:04 +0000 (08:44 -0200)
committerStefano Babic <sbabic@denx.de>
Mon, 2 Jan 2017 16:55:58 +0000 (17:55 +0100)
The standard way is to put ifdef/endif in the very first column.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
board/udoo/neo/neo.c

index c5058b454268af4264c9c1212402ee765ac167dc..530c45f600f2e111975985484bd431ce2d0f946e 100644 (file)
@@ -349,9 +349,9 @@ int board_init(void)
        /* Active high for ncp692 */
        gpio_direction_output(IMX_GPIO_NR(4, 16) , 1);
 
-       #ifdef CONFIG_SYS_I2C_MXC
+#ifdef CONFIG_SYS_I2C_MXC
        setup_i2c(0, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
-       #endif
+#endif
 
        return 0;
 }