/*1* Header for AK8813 / AK8814 TV-ecoders from Asahi Kasei Microsystems Co., Ltd. (AKM)2*3* Copyright (C) 2010, Guennadi Liakhovetski <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*/910#ifndef AK881X_H11#define AK881X_H1213#define AK881X_IF_MODE_MASK (3 << 0)14#define AK881X_IF_MODE_BT656 (0 << 0)15#define AK881X_IF_MODE_MASTER (1 << 0)16#define AK881X_IF_MODE_SLAVE (2 << 0)17#define AK881X_FIELD (1 << 2)18#define AK881X_COMPONENT (1 << 3)1920struct ak881x_pdata {21unsigned long flags;22};2324#endif252627