forked from Minki/linux
26f48eaa9e
Some cleanups and suggestions from Patrick Boettcher. Dropped the mutex in m9206_rc_query using #if 0, because M9206_CORE, M9206_I2C, M9206_FILTER and M9206_FW can be accessed concurrently. Thanks to both Aapo Tahkola and Patrick Boettcher. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
27 lines
550 B
C
27 lines
550 B
C
#ifndef _DVB_USB_M920X_H_
|
|
#define _DVB_USB_M920X_H_
|
|
|
|
#define DVB_USB_LOG_PREFIX "m920x"
|
|
#include "dvb-usb.h"
|
|
|
|
#define deb_rc(args...) dprintk(dvb_usb_m920x_debug,0x01,args)
|
|
|
|
#define M9206_CORE 0x22
|
|
#define M9206_RC_STATE 0xff51
|
|
#define M9206_RC_KEY 0xff52
|
|
#define M9206_RC_INIT1 0xff54
|
|
#define M9206_RC_INIT2 0xff55
|
|
#define M9206_FW_GO 0xff69
|
|
|
|
#define M9206_I2C 0x23
|
|
#define M9206_FILTER 0x25
|
|
#define M9206_FW 0x30
|
|
|
|
#define M9206_MAX_FILTERS 8
|
|
struct m9206_state {
|
|
u16 filters[M9206_MAX_FILTERS];
|
|
int filtering_enabled;
|
|
int rep_count;
|
|
};
|
|
#endif
|