Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller
0004  *
0005  * Copyright (C) 2010-2011 Digital Devices GmbH
0006  */
0007 
0008 #ifndef _CXD2099_H_
0009 #define _CXD2099_H_
0010 
0011 #include <media/dvb_ca_en50221.h>
0012 
0013 struct cxd2099_cfg {
0014     u32 bitrate;
0015     u8  polarity;
0016     u8  clock_mode;
0017 
0018     u32 max_i2c;
0019 
0020     /* ptr to DVB CA struct */
0021     struct dvb_ca_en50221 **en;
0022 };
0023 
0024 #endif