diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-26 18:01:24 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-31 07:22:41 -0500 |
commit | 88ab898f6639ca5a14943a882fbd141afc81fe90 (patch) | |
tree | 242f882155b2d032653571b1cac9431f2d88e0eb | |
parent | 1b5d8716b1663ed00718d738a16f43ebeeeaf81d (diff) |
[media] dvb-core: don't use fe_bandwidth_t on driver
Now that everybody is talking DVBv5 API dialect, using this
DVBv3 macro internally is not ok.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/bt8xx/dst_common.h | 2 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/dib3000mc.c | 2 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/dib7000m.c | 2 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/tda10048.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/dvb/bt8xx/dst_common.h b/drivers/media/dvb/bt8xx/dst_common.h index d88cf2add82b..d70d98f1a571 100644 --- a/drivers/media/dvb/bt8xx/dst_common.h +++ b/drivers/media/dvb/bt8xx/dst_common.h | |||
@@ -124,7 +124,7 @@ struct dst_state { | |||
124 | u16 decode_snr; | 124 | u16 decode_snr; |
125 | unsigned long cur_jiff; | 125 | unsigned long cur_jiff; |
126 | u8 k22; | 126 | u8 k22; |
127 | fe_bandwidth_t bandwidth; | 127 | u32 bandwidth; |
128 | u32 dst_hw_cap; | 128 | u32 dst_hw_cap; |
129 | u8 dst_fw_version; | 129 | u8 dst_fw_version; |
130 | fe_sec_mini_cmd_t minicmd; | 130 | fe_sec_mini_cmd_t minicmd; |
diff --git a/drivers/media/dvb/frontends/dib3000mc.c b/drivers/media/dvb/frontends/dib3000mc.c index 7472429e47ae..d9ea21001f77 100644 --- a/drivers/media/dvb/frontends/dib3000mc.c +++ b/drivers/media/dvb/frontends/dib3000mc.c | |||
@@ -40,7 +40,7 @@ struct dib3000mc_state { | |||
40 | 40 | ||
41 | u32 timf; | 41 | u32 timf; |
42 | 42 | ||
43 | fe_bandwidth_t current_bandwidth; | 43 | u32 current_bandwidth; |
44 | 44 | ||
45 | u16 dev_id; | 45 | u16 dev_id; |
46 | 46 | ||
diff --git a/drivers/media/dvb/frontends/dib7000m.c b/drivers/media/dvb/frontends/dib7000m.c index 29123aebf870..9f2330d832cf 100644 --- a/drivers/media/dvb/frontends/dib7000m.c +++ b/drivers/media/dvb/frontends/dib7000m.c | |||
@@ -38,7 +38,7 @@ struct dib7000m_state { | |||
38 | u16 wbd_ref; | 38 | u16 wbd_ref; |
39 | 39 | ||
40 | u8 current_band; | 40 | u8 current_band; |
41 | fe_bandwidth_t current_bandwidth; | 41 | u32 current_bandwidth; |
42 | struct dibx000_agc_config *current_agc; | 42 | struct dibx000_agc_config *current_agc; |
43 | u32 timf; | 43 | u32 timf; |
44 | u32 timf_default; | 44 | u32 timf_default; |
diff --git a/drivers/media/dvb/frontends/tda10048.c b/drivers/media/dvb/frontends/tda10048.c index 80de9f602d37..dfd1d5ac1825 100644 --- a/drivers/media/dvb/frontends/tda10048.c +++ b/drivers/media/dvb/frontends/tda10048.c | |||
@@ -153,7 +153,7 @@ struct tda10048_state { | |||
153 | u32 pll_pfactor; | 153 | u32 pll_pfactor; |
154 | u32 sample_freq; | 154 | u32 sample_freq; |
155 | 155 | ||
156 | enum fe_bandwidth bandwidth; | 156 | u32 bandwidth; |
157 | }; | 157 | }; |
158 | 158 | ||
159 | static struct init_tab { | 159 | static struct init_tab { |