opl_mod.c

来自「LINUX下的ov2640驱动程序」· C语言 代码 · 共 31 行

C
31
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?