mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
22 lines
260 B
C
22 lines
260 B
C
#ifndef _GX1503_H_
|
|
#define _GX1503_H_
|
|
|
|
#include <linux/dvb/frontend.h>
|
|
|
|
struct gx1503_config{
|
|
|
|
struct dvb_frontend **fe;
|
|
|
|
struct i2c_adapter **i2c_adapter;
|
|
|
|
int ts_mode; // 0 :serial 1:parallel
|
|
int ts_config;
|
|
|
|
u16 i2c_wr_max;
|
|
|
|
int clk_freq;
|
|
|
|
};
|
|
|
|
#endif
|