blob: 4a1ee2f33916dbe7b3688c11f4ede20bf75abd89 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
2 * Copyright (C) 2018 MediaTek Inc.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/hrtimer.h>
17#include <linux/cpu.h>
18#include <linux/mm.h>
19#include <linux/slab.h>
20#include <linux/profile.h>
21#include <linux/dcache.h>
22#include <linux/types.h>
23#include <linux/dcookies.h>
24#include <linux/sched.h>
25#include <linux/fs.h>
26
27static int __init met_drv_init(void)
28{
29 printk("Hello MET default module\n");
30 return 0;
31}
32
33static void __exit met_drv_exit(void)
34{
35}
36module_init(met_drv_init);
37module_exit(met_drv_exit);
38
39MODULE_AUTHOR("DT_DM5");
40MODULE_DESCRIPTION("MET_DEFAULT");
41MODULE_LICENSE("GPL");