aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/ab8500-ext.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-06-26 00:43:37 -0400
committerMark Brown <broonie@linaro.org>2013-06-26 11:23:09 -0400
commit08d49f4372ebee2b06d6988ecca37612fdc5b897 (patch)
treeecd40a27e5ddae7673d5d69ba1ddf18f6c63ee9b /drivers/regulator/ab8500-ext.c
parentce6f5ea3a7240c15e5775d5b9c5c57629943ca6c (diff)
regulator: ab8500-ext: Staticize local symbols
Local symbols used only in this file are made static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/ab8500-ext.c')
-rw-r--r--drivers/regulator/ab8500-ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/ab8500-ext.c b/drivers/regulator/ab8500-ext.c
index 4137a2fe42c3..02ff691cdb8b 100644
--- a/drivers/regulator/ab8500-ext.c
+++ b/drivers/regulator/ab8500-ext.c
@@ -341,7 +341,7 @@ static struct of_regulator_match ab8500_ext_regulator_match[] = {
341 { .name = "ab8500_ext3", .driver_data = (void *) AB8500_EXT_SUPPLY3, }, 341 { .name = "ab8500_ext3", .driver_data = (void *) AB8500_EXT_SUPPLY3, },
342}; 342};
343 343
344int ab8500_ext_regulator_probe(struct platform_device *pdev) 344static int ab8500_ext_regulator_probe(struct platform_device *pdev)
345{ 345{
346 struct ab8500 *ab8500 = dev_get_drvdata(pdev->dev.parent); 346 struct ab8500 *ab8500 = dev_get_drvdata(pdev->dev.parent);
347 struct ab8500_platform_data *ppdata; 347 struct ab8500_platform_data *ppdata;
@@ -433,7 +433,7 @@ int ab8500_ext_regulator_probe(struct platform_device *pdev)
433 return 0; 433 return 0;
434} 434}
435 435
436int ab8500_ext_regulator_remove(struct platform_device *pdev) 436static int ab8500_ext_regulator_remove(struct platform_device *pdev)
437{ 437{
438 int i; 438 int i;
439 439