aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2015-02-02 11:53:38 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-02-03 13:30:26 -0500
commit61c309ffcdc09c5fc7a13371fcf178a334eb36b7 (patch)
tree8be94926fd2db60d4f7d7b5a05d112c921660ed0 /drivers/media
parentb410dae43cd0dc9aa07f9ada54a7b78d0fd75566 (diff)
[media] rtl2830: add kernel-doc comments for platform_data
Add kernel-doc comments for platform_data configuration structure. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/dvb-frontends/rtl2830.h33
1 files changed, 13 insertions, 20 deletions
diff --git a/drivers/media/dvb-frontends/rtl2830.h b/drivers/media/dvb-frontends/rtl2830.h
index 156edf714f9f..0cde151e6608 100644
--- a/drivers/media/dvb-frontends/rtl2830.h
+++ b/drivers/media/dvb-frontends/rtl2830.h
@@ -20,33 +20,26 @@
20 20
21#include <linux/dvb/frontend.h> 21#include <linux/dvb/frontend.h>
22 22
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
23struct rtl2830_platform_data { 36struct rtl2830_platform_data {
24 /*
25 * Clock frequency.
26 * Hz
27 * 4000000, 16000000, 25000000, 28800000
28 */
29 u32 clk; 37 u32 clk;
30
31 /*
32 * Spectrum inversion.
33 */
34 bool spec_inv; 38 bool spec_inv;
35
36 /*
37 */
38 u8 vtop; 39 u8 vtop;
39
40 /*
41 */
42 u8 krf; 40 u8 krf;
43
44 /*
45 */
46 u8 agc_targ_val; 41 u8 agc_targ_val;
47 42
48 /*
49 */
50 struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *); 43 struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
51 struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *); 44 struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *);
52 int (*pid_filter)(struct dvb_frontend *, u8, u16, int); 45 int (*pid_filter)(struct dvb_frontend *, u8, u16, int);