diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2017-01-02 08:44:04 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2017-01-02 17:55:58 +0100 |
commit | 7c4f0ff81e6fc3b58b8af5f64c3da98624e40132 (patch) | |
tree | 3801635534620bbf7220c30e87bcc25fe67ad538 /board/udoo | |
parent | 696386e5f372795e5c49a21fb83ab87a97a4d43f (diff) | |
download | u-boot-imx-7c4f0ff81e6fc3b58b8af5f64c3da98624e40132.zip u-boot-imx-7c4f0ff81e6fc3b58b8af5f64c3da98624e40132.tar.gz u-boot-imx-7c4f0ff81e6fc3b58b8af5f64c3da98624e40132.tar.bz2 |
udoo: neo: Fix indentation
The standard way is to put ifdef/endif in the very first column.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Diffstat (limited to 'board/udoo')
-rw-r--r-- | board/udoo/neo/neo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/udoo/neo/neo.c b/board/udoo/neo/neo.c index c5058b4..530c45f 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; } |