Skip to content
Snippets Groups Projects
Commit 42acd187 authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

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: default avatarFabio Estevam <fabio.estevam@freescale.com>
parent e4b984d7
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment