You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
404 B
27 lines
404 B
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* sec_mm/
|
|
*
|
|
* Copyright (C) 2020 Samsung Electronics
|
|
*
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include "sec_mm.h"
|
|
|
|
static int __init sec_mm_init(void)
|
|
{
|
|
init_lowfile_detect();
|
|
pr_info("sec_mm init was done\n");
|
|
return 0;
|
|
}
|
|
|
|
static void __exit sec_mm_exit(void)
|
|
{
|
|
exit_lowfile_detect();
|
|
}
|
|
|
|
module_init(sec_mm_init);
|
|
module_exit(sec_mm_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|