[PATCH 1/4] ARM: ux500: Rid ignored return value of regulator_enable() compiler warning

From: Lee Jones
Date: Thu May 02 2013 - 11:48:30 EST


arch/arm/mach-ux500/board-mop500.c: In function âmop500_prox_activateâ:
arch/arm/mach-ux500/board-mop500.c:406:18: warning: ignoring return value of
âregulator_enableâ, declared with attribute warn_unused_result
[-Wunused-result]

Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
---
arch/arm/mach-ux500/board-mop500.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c
index a15dd6b..9bc762a 100644
--- a/arch/arm/mach-ux500/board-mop500.c
+++ b/arch/arm/mach-ux500/board-mop500.c
@@ -403,8 +403,8 @@ static int mop500_prox_activate(struct device *dev)
"no regulator\n");
return PTR_ERR(prox_regulator);
}
- regulator_enable(prox_regulator);
- return 0;
+
+ return regulator_enable(prox_regulator);
}

static void mop500_prox_deactivate(struct device *dev)
--
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/