rk fb: fb and screen driver load as fs_initcall

This commit is contained in:
yxj
2014-03-28 16:21:04 +08:00
parent 82a647d8b4
commit b0054afe18
2 changed files with 2 additions and 2 deletions

View File

@@ -3018,5 +3018,5 @@ static void __exit rk_fb_exit(void)
platform_driver_unregister(&rk_fb_driver);
}
subsys_initcall_sync(rk_fb_init);
fs_initcall(rk_fb_init);
module_exit(rk_fb_exit);

View File

@@ -62,6 +62,6 @@ static void __exit rk_screen_exit(void)
platform_driver_unregister(&rk_screen_driver);
}
subsys_initcall_sync(rk_screen_init);
fs_initcall(rk_screen_init);
module_exit(rk_screen_exit);