Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/drivers/media/dvb/ttpci/av7110_ca.h
15111 views
1
#ifndef _AV7110_CA_H_
2
#define _AV7110_CA_H_
3
4
struct av7110;
5
6
extern void CI_handle(struct av7110 *av7110, u8 *data, u16 len);
7
extern void ci_get_data(struct dvb_ringbuffer *cibuf, u8 *data, int len);
8
9
extern int av7110_ca_register(struct av7110 *av7110);
10
extern void av7110_ca_unregister(struct av7110 *av7110);
11
extern int av7110_ca_init(struct av7110* av7110);
12
extern void av7110_ca_exit(struct av7110* av7110);
13
14
#endif /* _AV7110_CA_H_ */
15
16