Skip to content

Commit 61c309f

Browse files
palosaarimchehab
authored andcommitted
[media] rtl2830: add kernel-doc comments for platform_data
Add kernel-doc comments for platform_data configuration structure. Signed-off-by: Antti Palosaari <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent b410dae commit 61c309f

File tree

1 file changed

+13
-20
lines changed

1 file changed

+13
-20
lines changed

drivers/media/dvb-frontends/rtl2830.h

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,26 @@
2020

2121
#include <linux/dvb/frontend.h>
2222

23+
/**
24+
* struct rtl2830_platform_data - Platform data for the rtl2830 driver
25+
* @clk: Clock frequency (4000000, 16000000, 25000000, 28800000).
26+
* @spec_inv: Spectrum inversion.
27+
* @vtop: AGC take-over point.
28+
* @krf: AGC ratio.
29+
* @agc_targ_val: AGC.
30+
* @get_dvb_frontend: Get DVB frontend.
31+
* @get_i2c_adapter: Get I2C adapter.
32+
* @pid_filter: Set PID to PID filter.
33+
* @pid_filter_ctrl: Control PID filter.
34+
*/
35+
2336
struct rtl2830_platform_data {
24-
/*
25-
* Clock frequency.
26-
* Hz
27-
* 4000000, 16000000, 25000000, 28800000
28-
*/
2937
u32 clk;
30-
31-
/*
32-
* Spectrum inversion.
33-
*/
3438
bool spec_inv;
35-
36-
/*
37-
*/
3839
u8 vtop;
39-
40-
/*
41-
*/
4240
u8 krf;
43-
44-
/*
45-
*/
4641
u8 agc_targ_val;
4742

48-
/*
49-
*/
5043
struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
5144
struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *);
5245
int (*pid_filter)(struct dvb_frontend *, u8, u16, int);

0 commit comments

Comments
 (0)