mantis_dvb.h 530 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. Mantis PCI bridge driver
  4. Copyright (C) Manu Abraham ([email protected])
  5. */
  6. #ifndef __MANTIS_DVB_H
  7. #define __MANTIS_DVB_H
  8. enum mantis_power {
  9. POWER_OFF = 0,
  10. POWER_ON = 1
  11. };
  12. extern int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power);
  13. extern void mantis_frontend_soft_reset(struct mantis_pci *mantis);
  14. extern int mantis_dvb_init(struct mantis_pci *mantis);
  15. extern int mantis_dvb_exit(struct mantis_pci *mantis);
  16. #endif /* __MANTIS_DVB_H */