Thomas Gleixner | 74ba920 | 2019-05-20 09:19:02 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Manu Abraham | 8825a09 | 2009-12-15 09:13:49 -0300 | [diff] [blame] | 2 | /* |
| 3 | Mantis PCI bridge driver |
| 4 | |
| 5 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) |
| 6 | |
Manu Abraham | 8825a09 | 2009-12-15 09:13:49 -0300 | [diff] [blame] | 7 | */ |
| 8 | |
Manu Abraham | b3b9614 | 2009-12-04 05:41:11 -0300 | [diff] [blame] | 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 */ |