35 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/* DVB USB compliant Linux driver for the3 * - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module4 *5 * Copyright (C) 2006 Alan Nisota (alannisota@gmail.com)6 * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com)7 *8 * Thanks to GENPIX for the sample code used to implement this module.9 *10 * This module is based off the vp7045 and vp702x modules11 *12 * see Documentation/driver-api/media/drivers/dvb-usb.rst for more information13 */14#ifndef _DVB_USB_GP8PSK_H_15#define _DVB_USB_GP8PSK_H_16 17#define DVB_USB_LOG_PREFIX "gp8psk"18#include "dvb-usb.h"19 20extern int dvb_usb_gp8psk_debug;21#define deb_info(args...) dprintk(dvb_usb_gp8psk_debug,0x01,args)22#define deb_xfer(args...) dprintk(dvb_usb_gp8psk_debug,0x02,args)23#define deb_rc(args...) dprintk(dvb_usb_gp8psk_debug,0x04,args)24 25#define GET_USB_SPEED 0x0726 27#define RESET_FX2 0x1328 29#define FW_VERSION_READ 0x0B30#define VENDOR_STRING_READ 0x0C31#define PRODUCT_STRING_READ 0x0D32#define FW_BCD_VERSION_READ 0x1433 34#endif35