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