Commit 7908fad9 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] mn88473: finalize driver

Finalize the driver.
It still lacks a lot of features, like all statistics and PLP
filtering, but basic functionality and sensitivity is pretty good
shape.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Reviewed-by: default avatarBenjamin Larsson <benjamin@southpole.se>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 877ba50b
This diff is collapsed.
...@@ -22,10 +22,16 @@ ...@@ -22,10 +22,16 @@
struct mn88473_config { struct mn88473_config {
/* /*
* Max num of bytes given I2C adapter could write at once. * Max num of bytes given I2C adapter could write at once.
* Default: none * Default: unlimited
*/ */
u16 i2c_wr_max; u16 i2c_wr_max;
/*
* Xtal frequency Hz.
* Default: 25000000
*/
u32 xtal;
/* Everything after that is returned by the driver. */ /* Everything after that is returned by the driver. */
...@@ -33,12 +39,6 @@ struct mn88473_config { ...@@ -33,12 +39,6 @@ struct mn88473_config {
* DVB frontend. * DVB frontend.
*/ */
struct dvb_frontend **fe; struct dvb_frontend **fe;
/*
* Xtal frequency.
* Hz
*/
u32 xtal;
}; };
#endif #endif
...@@ -27,11 +27,10 @@ ...@@ -27,11 +27,10 @@
struct mn88473_dev { struct mn88473_dev {
struct i2c_client *client[3]; struct i2c_client *client[3];
struct regmap *regmap[3]; struct regmap *regmap[3];
struct dvb_frontend fe; struct dvb_frontend frontend;
u16 i2c_wr_max; u16 i2c_wr_max;
enum fe_delivery_system delivery_system; bool active;
bool warm; /* FW running */ u32 clk;
u32 xtal;
}; };
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment