mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 22:46:41 +07:00
24 lines
293 B
C
24 lines
293 B
C
|
#ifndef SI2168_H
|
||
|
#define SI2168_H
|
||
|
|
||
|
#include <linux/dvb/frontend.h>
|
||
|
/*
|
||
|
* I2C address
|
||
|
* 0x64
|
||
|
*/
|
||
|
struct si2168_config {
|
||
|
/*
|
||
|
* frontend
|
||
|
* returned by driver
|
||
|
*/
|
||
|
struct dvb_frontend **fe;
|
||
|
|
||
|
/*
|
||
|
* tuner I2C adapter
|
||
|
* returned by driver
|
||
|
*/
|
||
|
struct i2c_adapter **i2c_adapter;
|
||
|
};
|
||
|
|
||
|
#endif
|