cxd2099.h (397B)
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller 4 * 5 * Copyright (C) 2010-2011 Digital Devices GmbH 6 */ 7 8#ifndef _CXD2099_H_ 9#define _CXD2099_H_ 10 11#include <media/dvb_ca_en50221.h> 12 13struct cxd2099_cfg { 14 u32 bitrate; 15 u8 polarity; 16 u8 clock_mode; 17 18 u32 max_i2c; 19 20 /* ptr to DVB CA struct */ 21 struct dvb_ca_en50221 **en; 22}; 23 24#endif