mirror of https://gitee.com/openkylin/linux.git
staging: android: ion: Nuke ion_page_pool_init
ion_page_pool.c now is used to apply pool APIs for system heap, which do not need do any initial at device_initcall. Therefore ion_page_pool_init can be nuked. Signed-off-by: Yisheng Xie <xieyisheng1@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1781b258f0
commit
f3b0b012b4
|
@ -6,7 +6,6 @@
|
|||
*/
|
||||
|
||||
#include <linux/list.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/swap.h>
|
||||
|
||||
|
@ -158,9 +157,3 @@ void ion_page_pool_destroy(struct ion_page_pool *pool)
|
|||
{
|
||||
kfree(pool);
|
||||
}
|
||||
|
||||
static int __init ion_page_pool_init(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
device_initcall(ion_page_pool_init);
|
||||
|
|
Loading…
Reference in New Issue