diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-29 04:14:35 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-29 04:14:35 +0100 |
commit | 1433d0905f98584abe74c219869d138304b3c9e1 (patch) | |
tree | be9a815b9e03a18e81c182f12b5c95526e490307 /drivers | |
parent | Merge remote-tracking branch 'regulator/fix/db8500' into tmp (diff) | |
parent | regulator: tps80031: Use IS_ERR to check return value of regulator_register() (diff) | |
download | linux-1433d0905f98584abe74c219869d138304b3c9e1.tar.xz linux-1433d0905f98584abe74c219869d138304b3c9e1.zip |
Merge remote-tracking branch 'regulator/fix/tps80031' into tmp
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/tps80031-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps80031-regulator.c b/drivers/regulator/tps80031-regulator.c index b15d711bc8c6..9019d0e7ecb6 100644 --- a/drivers/regulator/tps80031-regulator.c +++ b/drivers/regulator/tps80031-regulator.c @@ -728,7 +728,7 @@ static int tps80031_regulator_probe(struct platform_device *pdev) } } rdev = regulator_register(&ri->rinfo->desc, &config); - if (IS_ERR_OR_NULL(rdev)) { + if (IS_ERR(rdev)) { dev_err(&pdev->dev, "register regulator failed %s\n", ri->rinfo->desc.name); |