1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _AV7110_CA_H_
3 #define _AV7110_CA_H_
4 
5 struct av7110;
6 
7 extern void CI_handle(struct av7110 *av7110, u8 *data, u16 len);
8 extern void ci_get_data(struct dvb_ringbuffer *cibuf, u8 *data, int len);
9 
10 extern int av7110_ca_register(struct av7110 *av7110);
11 extern void av7110_ca_unregister(struct av7110 *av7110);
12 extern int av7110_ca_init(struct av7110* av7110);
13 extern void av7110_ca_exit(struct av7110* av7110);
14 
15 #endif /* _AV7110_CA_H_ */
16