diff options
author | Sanjeev Premi <premi@ti.com> | 2011-09-05 00:25:53 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-12 17:40:47 +0200 |
commit | 8c4e0ca69e09e05c2857f49b233df7ac38451fef (patch) | |
tree | 864dcd92b175de1758dc0e3d85fd5e510035d79a | |
parent | 6ceb0135f96d73063ffbaab5be7ce23933367388 (diff) | |
download | u-boot-imx-8c4e0ca69e09e05c2857f49b233df7ac38451fef.zip u-boot-imx-8c4e0ca69e09e05c2857f49b233df7ac38451fef.tar.gz u-boot-imx-8c4e0ca69e09e05c2857f49b233df7ac38451fef.tar.bz2 |
omap3: beagle: Fix build warning
This patch fixes the warning dure to recent changes to the board
configuration:
cmd_i2c.o cmd_i2c.c -c
cmd_i2c.c:109:1: warning: missing braces around initializer
cmd_i2c.c:109:1: warning: (near initialization for 'i2c_no_probes[0]')
Signed-off-by: Sanjeev Premi <premi@ti.com>
Cc: Jason Kridner <jkridner@beagleboard.org>
Acked-by: Jason Kridner <jdk@ti.com>
-rw-r--r-- | include/configs/omap3_beagle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 18c6deb..a891246 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -118,7 +118,7 @@ #define CONFIG_I2C_MULTI_BUS 1 /* Probe all devices */ -#define CONFIG_SYS_I2C_NOPROBES {0x0, 0x0} +#define CONFIG_SYS_I2C_NOPROBES {{0x0, 0x0}} /* USB */ #define CONFIG_MUSB_UDC 1 |