diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-12-02 23:07:06 +1000 |
---|---|---|
committer | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-12-02 23:07:06 +1000 |
commit | d0188f79d5ca5c89b9106c3a99f9eefe465b5f5e (patch) | |
tree | 4413f396e670f6bb612f186412124239c8c54d5d /linux/drivers/media/video/tuner-xc2028.h | |
parent | 00ab6c90dc98d2413de98eebf8638f1f38a365af (diff) | |
download | mediapointer-dvb-s2-d0188f79d5ca5c89b9106c3a99f9eefe465b5f5e.tar.gz mediapointer-dvb-s2-d0188f79d5ca5c89b9106c3a99f9eefe465b5f5e.tar.bz2 |
xc2028: select DTV78 firmware if tuning 7MHz VHF / 8MHz UHF
From: Chris Pascoe <c.pascoe@itee.uq.edu.au>
It seems that the DTV78 firmware is intended for use in locations where
VHF channels have 7MHz bandwidth and UHF channels have 8MHz bandwidth.
If we switch to DTV78 firmware when we detect this condition, we can
avoid firmware reloads when switching between VHF and UHF transponders.
Place the state for this in the control structure so that card drivers
can hint to us to use DTV78 firmware from the first tuning attempt.
Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Diffstat (limited to 'linux/drivers/media/video/tuner-xc2028.h')
-rw-r--r-- | linux/drivers/media/video/tuner-xc2028.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/tuner-xc2028.h b/linux/drivers/media/video/tuner-xc2028.h index 1fe8b1959..7462629b9 100644 --- a/linux/drivers/media/video/tuner-xc2028.h +++ b/linux/drivers/media/video/tuner-xc2028.h @@ -30,6 +30,8 @@ struct xc2028_ctrl { unsigned int mts :1; unsigned int d2633 :1; unsigned int input1:1; + unsigned int vhfbw7:1; + unsigned int uhfbw8:1; unsigned int demod; }; |