rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* |
| 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 | |
| 27 | static int __init met_drv_init(void) |
| 28 | { |
| 29 | pr_info("Hello MET default module\n"); |
| 30 | return 0; |
| 31 | } |
| 32 | |
| 33 | static void __exit met_drv_exit(void) |
| 34 | { |
| 35 | } |
| 36 | module_init(met_drv_init); |
| 37 | module_exit(met_drv_exit); |
| 38 | |
| 39 | MODULE_AUTHOR("DT_DM5"); |
| 40 | MODULE_DESCRIPTION("MET_DEFAULT"); |
| 41 | MODULE_LICENSE("GPL"); |