summaryrefslogtreecommitdiffstats
path: root/board/freescale
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2015-07-21 20:37:22 -0300
committerStefano Babic <sbabic@denx.de>2015-07-26 12:12:04 +0200
commit42acd1874f3db6c34264870047500435ca01fcda (patch)
tree049eeb67e47591d707d0d4647fedf4e53332b5d6 /board/freescale
parente4b984d75eb7589e91cbb8b939e0fc1418d68446 (diff)
downloadtalos-obmc-uboot-42acd1874f3db6c34264870047500435ca01fcda.tar.gz
talos-obmc-uboot-42acd1874f3db6c34264870047500435ca01fcda.zip
mx6sxsabresd: Use 'int' for return values
The variable 'ret' is used to store the value returned by pfuze_mode_init(), so it should be of type 'int' instead of 'unsigned int' in order to correctly handle negative numbers. Fix the variable type. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/mx6sxsabresd/mx6sxsabresd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/mx6sxsabresd/mx6sxsabresd.c b/board/freescale/mx6sxsabresd/mx6sxsabresd.c
index 2ff960e3bb..d58a79a6b8 100644
--- a/board/freescale/mx6sxsabresd/mx6sxsabresd.c
+++ b/board/freescale/mx6sxsabresd/mx6sxsabresd.c
@@ -199,7 +199,8 @@ static struct i2c_pads_info i2c_pad_info1 = {
int power_init_board(void)
{
struct pmic *p;
- unsigned int reg, ret;
+ unsigned int reg;
+ int ret;
p = pfuze_common_init(I2C_PMIC);
if (!p)
OpenPOWER on IntegriCloud