diff options
author | Rajendra Nayak <rnayak@ti.com> | 2011-11-24 02:27:17 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-24 05:47:56 -0500 |
commit | 156843470c4b9ea9698cc245d2cff769b3784088 (patch) | |
tree | 7c053ae02d28cf55cdd38c21a35cfed7ecba0a47 /drivers/regulator | |
parent | 69511a452e6dc6b74fe4f3671a51b1b44b9c57e3 (diff) |
regulator: Fix compile break due to missing arguments to regulator_register
The commit 2c043bcbf287 ("regulator: pass additional of_node to
regulator_register()") caused a compile break because it missed
updating the regulator_register() call in gpio-regulator.c with
the additional parameter (NULL).
The compile break as reported by Stephen Rothwell with the
x86_64 allmodconfig looked like this
drivers/regulator/gpio-regulator.c: In function 'gpio_regulator_probe':
drivers/regulator/gpio-regulator.c:287:8: error: too few arguments to function 'regulator_register'
include/linux/regulator/driver.h:215:23: note: declared here
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/gpio-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/gpio-regulator.c b/drivers/regulator/gpio-regulator.c index f0acf52498bd..42e1cb1835e5 100644 --- a/drivers/regulator/gpio-regulator.c +++ b/drivers/regulator/gpio-regulator.c | |||
@@ -284,7 +284,7 @@ static int __devinit gpio_regulator_probe(struct platform_device *pdev) | |||
284 | drvdata->state = state; | 284 | drvdata->state = state; |
285 | 285 | ||
286 | drvdata->dev = regulator_register(&drvdata->desc, &pdev->dev, | 286 | drvdata->dev = regulator_register(&drvdata->desc, &pdev->dev, |
287 | config->init_data, drvdata); | 287 | config->init_data, drvdata, NULL); |
288 | if (IS_ERR(drvdata->dev)) { | 288 | if (IS_ERR(drvdata->dev)) { |
289 | ret = PTR_ERR(drvdata->dev); | 289 | ret = PTR_ERR(drvdata->dev); |
290 | dev_err(&pdev->dev, "Failed to register regulator: %d\n", ret); | 290 | dev_err(&pdev->dev, "Failed to register regulator: %d\n", ret); |