diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2013-02-24 06:55:34 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-03-03 21:56:37 -0500 |
commit | 720a9717bcdad6fbfa22cde082c47fb969a22f6f (patch) | |
tree | 9fc6764c991c71640815bd123f8a903d5446e22b /drivers/regulator/s5m8767.c | |
parent | 6dbe51c251a327e012439c4772097a13df43c5b8 (diff) |
regulator: s5m8767: adjust duplicate test
Delete successive tests to the same location.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@s exists@
local idexpression y;
expression x,e;
@@
*if ( \(x == NULL\|IS_ERR(x)\|y != 0\) )
{ ... when forall
return ...; }
... when != \(y = e\|y += e\|y -= e\|y |= e\|y &= e\|y++\|y--\|&y\)
*if ( \(x == NULL\|IS_ERR(x)\|y != 0\) )
{ ... when forall
return ...; }
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/s5m8767.c')
-rw-r--r-- | drivers/regulator/s5m8767.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c index 8a831947c351..8e56198167e8 100644 --- a/drivers/regulator/s5m8767.c +++ b/drivers/regulator/s5m8767.c | |||
@@ -549,7 +549,7 @@ static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev, | |||
549 | 549 | ||
550 | rmode = devm_kzalloc(&pdev->dev, sizeof(*rmode) * | 550 | rmode = devm_kzalloc(&pdev->dev, sizeof(*rmode) * |
551 | pdata->num_regulators, GFP_KERNEL); | 551 | pdata->num_regulators, GFP_KERNEL); |
552 | if (!rdata) { | 552 | if (!rmode) { |
553 | dev_err(iodev->dev, | 553 | dev_err(iodev->dev, |
554 | "could not allocate memory for regulator mode\n"); | 554 | "could not allocate memory for regulator mode\n"); |
555 | return -ENOMEM; | 555 | return -ENOMEM; |