1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3	Mantis PCI bridge driver
4
5	Copyright (C) Manu Abraham (abraham.manu@gmail.com)
6
7*/
8
9#ifndef __MANTIS_DVB_H
10#define __MANTIS_DVB_H
11
12enum mantis_power {
13	POWER_OFF	= 0,
14	POWER_ON	= 1
15};
16
17extern int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power);
18extern void mantis_frontend_soft_reset(struct mantis_pci *mantis);
19
20extern int mantis_dvb_init(struct mantis_pci *mantis);
21extern int mantis_dvb_exit(struct mantis_pci *mantis);
22
23#endif /* __MANTIS_DVB_H */
24