summaryrefslogtreecommitdiff
path: root/drivers/media/video/mxc/opl/opl_mod.c
blob: 6761f37988da0dd342e1f3f55d0cacfdb2c908a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright 2004-2010 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");