brintos

brintos / linux-shallow public Read only

0
0
Text · 397 B · 5d40600 Raw
25 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller4 *5 * Copyright (C) 2010-2011 Digital Devices GmbH6 */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#endif25