rk29: backlight: backport from rk2818, enable backlight after show logo

This commit is contained in:
黄涛 2011-03-23 16:32:26 +08:00
parent a5f9a87633
commit 470b2df328
3 changed files with 3 additions and 5 deletions

View File

@ -396,4 +396,4 @@ static int __init rk29_backlight_init(void)
platform_driver_register(&rk29_backlight_driver);
return 0;
}
postcore_initcall_sync(rk29_backlight_init);
fs_initcall_sync(rk29_backlight_init);

View File

@ -3526,7 +3526,7 @@ static int __init fb_console_init(void)
return 0;
}
module_init(fb_console_init);
subsys_initcall(fb_console_init);
#ifdef MODULE

View File

@ -2703,9 +2703,7 @@ static void __exit rk29fb_exit(void)
platform_driver_unregister(&rk29fb_driver);
}
//subsys_initcall(rk29fb_init);
module_init(rk29fb_init);
fs_initcall(rk29fb_init);
module_exit(rk29fb_exit);