| /* |
| * Copyright (C) 2018 MediaTek Inc. |
| * |
| * This program is free software: you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 as |
| * published by the Free Software Foundation. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| */ |
| |
| #include <linux/init.h> |
| #include <linux/module.h> |
| #include <linux/hrtimer.h> |
| #include <linux/cpu.h> |
| #include <linux/mm.h> |
| #include <linux/slab.h> |
| #include <linux/profile.h> |
| #include <linux/dcache.h> |
| #include <linux/types.h> |
| #include <linux/dcookies.h> |
| #include <linux/sched.h> |
| #include <linux/fs.h> |
| |
| static int __init met_drv_init(void) |
| { |
| printk("Hello MET default module\n"); |
| return 0; |
| } |
| |
| static void __exit met_drv_exit(void) |
| { |
| } |
| module_init(met_drv_init); |
| module_exit(met_drv_exit); |
| |
| MODULE_AUTHOR("DT_DM5"); |
| MODULE_DESCRIPTION("MET_DEFAULT"); |
| MODULE_LICENSE("GPL"); |