GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / media / ak881x.h
blobb7f2add5ce7bfc5ef640ccd00e68ff64d1700195
1 /*
2 * Header for AK8813 / AK8814 TV-ecoders from Asahi Kasei Microsystems Co., Ltd. (AKM)
4 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
11 #ifndef AK881X_H
12 #define AK881X_H
14 #define AK881X_IF_MODE_MASK (3 << 0)
15 #define AK881X_IF_MODE_BT656 (0 << 0)
16 #define AK881X_IF_MODE_MASTER (1 << 0)
17 #define AK881X_IF_MODE_SLAVE (2 << 0)
18 #define AK881X_FIELD (1 << 2)
19 #define AK881X_COMPONENT (1 << 3)
21 struct ak881x_pdata {
22 unsigned long flags;
25 #endif