diff options
Diffstat (limited to 'drivers/regulator/anatop-regulator.c')
-rw-r--r-- | drivers/regulator/anatop-regulator.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/anatop-regulator.c b/drivers/regulator/anatop-regulator.c index 17499a55113d..e365d11aeb13 100644 --- a/drivers/regulator/anatop-regulator.c +++ b/drivers/regulator/anatop-regulator.c | |||
@@ -213,7 +213,7 @@ static struct of_device_id __devinitdata of_anatop_regulator_match_tbl[] = { | |||
213 | { /* end */ } | 213 | { /* end */ } |
214 | }; | 214 | }; |
215 | 215 | ||
216 | static struct platform_driver anatop_regulator = { | 216 | static struct platform_driver anatop_regulator_driver = { |
217 | .driver = { | 217 | .driver = { |
218 | .name = "anatop_regulator", | 218 | .name = "anatop_regulator", |
219 | .owner = THIS_MODULE, | 219 | .owner = THIS_MODULE, |
@@ -225,13 +225,13 @@ static struct platform_driver anatop_regulator = { | |||
225 | 225 | ||
226 | static int __init anatop_regulator_init(void) | 226 | static int __init anatop_regulator_init(void) |
227 | { | 227 | { |
228 | return platform_driver_register(&anatop_regulator); | 228 | return platform_driver_register(&anatop_regulator_driver); |
229 | } | 229 | } |
230 | postcore_initcall(anatop_regulator_init); | 230 | postcore_initcall(anatop_regulator_init); |
231 | 231 | ||
232 | static void __exit anatop_regulator_exit(void) | 232 | static void __exit anatop_regulator_exit(void) |
233 | { | 233 | { |
234 | platform_driver_unregister(&anatop_regulator); | 234 | platform_driver_unregister(&anatop_regulator_driver); |
235 | } | 235 | } |
236 | module_exit(anatop_regulator_exit); | 236 | module_exit(anatop_regulator_exit); |
237 | 237 | ||