mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-30 07:38:52 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
41
drivers/media/usb/dvb-usb/cxusb.h
Normal file
41
drivers/media/usb/dvb-usb/cxusb.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
#ifndef _DVB_USB_CXUSB_H_
|
||||
#define _DVB_USB_CXUSB_H_
|
||||
|
||||
#define DVB_USB_LOG_PREFIX "cxusb"
|
||||
#include "dvb-usb.h"
|
||||
|
||||
/* usb commands - some of it are guesses, don't have a reference yet */
|
||||
#define CMD_BLUEBIRD_GPIO_RW 0x05
|
||||
|
||||
#define CMD_I2C_WRITE 0x08
|
||||
#define CMD_I2C_READ 0x09
|
||||
|
||||
#define CMD_GPIO_READ 0x0d
|
||||
#define CMD_GPIO_WRITE 0x0e
|
||||
#define GPIO_TUNER 0x02
|
||||
|
||||
#define CMD_POWER_OFF 0xdc
|
||||
#define CMD_POWER_ON 0xde
|
||||
|
||||
#define CMD_STREAMING_ON 0x36
|
||||
#define CMD_STREAMING_OFF 0x37
|
||||
|
||||
#define CMD_AVER_STREAM_ON 0x18
|
||||
#define CMD_AVER_STREAM_OFF 0x19
|
||||
|
||||
#define CMD_GET_IR_CODE 0x47
|
||||
|
||||
#define CMD_ANALOG 0x50
|
||||
#define CMD_DIGITAL 0x51
|
||||
|
||||
#define CMD_SP2_CI_WRITE 0x70
|
||||
#define CMD_SP2_CI_READ 0x71
|
||||
|
||||
struct cxusb_state {
|
||||
u8 gpio_write_state[3];
|
||||
struct i2c_client *i2c_client_demod;
|
||||
struct i2c_client *i2c_client_tuner;
|
||||
struct i2c_client *i2c_client_ci;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue