Path: blob/master/drivers/media/dvb/mantis/mantis_dvb.h
15112 views
/*1Mantis PCI bridge driver23Copyright (C) Manu Abraham ([email protected])45This program is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2 of the License, or8(at your option) any later version.910This program is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with this program; if not, write to the Free Software17Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18*/1920#ifndef __MANTIS_DVB_H21#define __MANTIS_DVB_H2223enum mantis_power {24POWER_OFF = 0,25POWER_ON = 126};2728extern int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power);29extern void mantis_frontend_soft_reset(struct mantis_pci *mantis);3031extern int mantis_dvb_init(struct mantis_pci *mantis);32extern int mantis_dvb_exit(struct mantis_pci *mantis);3334#endif /* __MANTIS_DVB_H */353637