From: Fabio Estevam Date: Mon, 2 Jan 2017 10:44:04 +0000 (-0200) Subject: udoo: neo: Fix indentation X-Git-Tag: v2017.01-rc3~1^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7c4f0ff81e6fc3b58b8af5f64c3da98624e40132;p=u-boot udoo: neo: Fix indentation The standard way is to put ifdef/endif in the very first column. Signed-off-by: Fabio Estevam --- diff --git a/board/udoo/neo/neo.c b/board/udoo/neo/neo.c index c5058b4542..530c45f600 100644 --- a/board/udoo/neo/neo.c +++ b/board/udoo/neo/neo.c @@ -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; }