#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int __init hello_module_init(void) { return 0; } void __exit hello_module_exit(void) { } module_init(hello_module_init); module_exit(hello_module_exit); MODULE_AUTHOR("Novatek Corp."); MODULE_DESCRIPTION("hello driver"); MODULE_LICENSE("GPL");