root/drivers/media/pci/mantis/mantis_dvb.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   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 
  12 enum mantis_power {
  13         POWER_OFF       = 0,
  14         POWER_ON        = 1
  15 };
  16 
  17 extern int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power);
  18 extern void mantis_frontend_soft_reset(struct mantis_pci *mantis);
  19 
  20 extern int mantis_dvb_init(struct mantis_pci *mantis);
  21 extern int mantis_dvb_exit(struct mantis_pci *mantis);
  22 
  23 #endif /* __MANTIS_DVB_H */

/* [<][>][^][v][top][bottom][index][help] */