📄 opl_mod.c
字号:
/* * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved. *//* * The code contained herein is licensed under the GNU General Public * License. You may obtain a copy of the GNU General Public License * Version 2 or later at the following locations: * * http://www.opensource.org/licenses/gpl-license.html * http://www.gnu.org/copyleft/gpl.html */#include <linux/module.h>static __init int opl_init(void){ return 0;}static void __exit opl_exit(void){}module_init(opl_init);module_exit(opl_exit);MODULE_AUTHOR("Freescale Semiconductor, Inc.");MODULE_DESCRIPTION("OPL Software Rotation/Mirroring");MODULE_LICENSE("GPL");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -