Commit 61c309ff authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] rtl2830: add kernel-doc comments for platform_data

Add kernel-doc comments for platform_data configuration structure.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent b410dae4
...@@ -20,33 +20,26 @@ ...@@ -20,33 +20,26 @@
#include <linux/dvb/frontend.h> #include <linux/dvb/frontend.h>
struct rtl2830_platform_data { /**
/* * struct rtl2830_platform_data - Platform data for the rtl2830 driver
* Clock frequency. * @clk: Clock frequency (4000000, 16000000, 25000000, 28800000).
* Hz * @spec_inv: Spectrum inversion.
* 4000000, 16000000, 25000000, 28800000 * @vtop: AGC take-over point.
* @krf: AGC ratio.
* @agc_targ_val: AGC.
* @get_dvb_frontend: Get DVB frontend.
* @get_i2c_adapter: Get I2C adapter.
* @pid_filter: Set PID to PID filter.
* @pid_filter_ctrl: Control PID filter.
*/ */
u32 clk;
/* struct rtl2830_platform_data {
* Spectrum inversion. u32 clk;
*/
bool spec_inv; bool spec_inv;
/*
*/
u8 vtop; u8 vtop;
/*
*/
u8 krf; u8 krf;
/*
*/
u8 agc_targ_val; u8 agc_targ_val;
/*
*/
struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *); struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *); struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *);
int (*pid_filter)(struct dvb_frontend *, u8, u16, int); int (*pid_filter)(struct dvb_frontend *, u8, u16, int);
......
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