hc
2023-10-16 def2367077573b56f9fc4f824e5c0377a3a4175a
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
/*
 * Header for AK8813 / AK8814 TV-ecoders from Asahi Kasei Microsystems Co., Ltd. (AKM)
 *
 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
 
#ifndef AK881X_H
#define AK881X_H
 
#define AK881X_IF_MODE_MASK    (3 << 0)
#define AK881X_IF_MODE_BT656    (0 << 0)
#define AK881X_IF_MODE_MASTER    (1 << 0)
#define AK881X_IF_MODE_SLAVE    (2 << 0)
#define AK881X_FIELD        (1 << 2)
#define AK881X_COMPONENT    (1 << 3)
 
struct ak881x_pdata {
   unsigned long flags;
};
 
#endif