aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/backlight/tps65217_bl.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/backlight/tps65217_bl.c')
-rw-r--r--drivers/video/backlight/tps65217_bl.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/drivers/video/backlight/tps65217_bl.c b/drivers/video/backlight/tps65217_bl.c
index 6ac2ef5da32c..70881633b45a 100644
--- a/drivers/video/backlight/tps65217_bl.c
+++ b/drivers/video/backlight/tps65217_bl.c
@@ -312,6 +312,7 @@ static int tps65217_bl_probe(struct platform_device *pdev)
312 } 312 }
313 313
314 tps65217_bl->bl->props.brightness = 0; 314 tps65217_bl->bl->props.brightness = 0;
315 platform_set_drvdata(pdev, tps65217_bl);
315 316
316 return 0; 317 return 0;
317} 318}
@@ -334,18 +335,7 @@ static struct platform_driver tps65217_bl_driver = {
334 }, 335 },
335}; 336};
336 337
337static int __init tps65217_bl_init(void) 338module_platform_driver(tps65217_bl_driver);
338{
339 return platform_driver_register(&tps65217_bl_driver);
340}
341
342static void __exit tps65217_bl_exit(void)
343{
344 platform_driver_unregister(&tps65217_bl_driver);
345}
346
347module_init(tps65217_bl_init);
348module_exit(tps65217_bl_exit);
349 339
350MODULE_DESCRIPTION("TPS65217 Backlight driver"); 340MODULE_DESCRIPTION("TPS65217 Backlight driver");
351MODULE_LICENSE("GPL v2"); 341MODULE_LICENSE("GPL v2");