1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 Mantis VP-1034 driver 4 5 Copyright (C) Manu Abraham (abraham.manu@gmail.com) 6 7 */ 8 9 #ifndef __MANTIS_VP1034_H 10 #define __MANTIS_VP1034_H 11 12 #include <media/dvb_frontend.h> 13 #include "mantis_common.h" 14 15 16 #define MANTIS_VP_1034_DVB_S 0x0014 17 18 extern struct mantis_hwconfig vp1034_config; 19 extern int vp1034_set_voltage(struct dvb_frontend *fe, 20 enum fe_sec_voltage voltage); 21 22 #endif /* __MANTIS_VP1034_H */ 23