diff options
author | CrazyCat <crazycat69@narod.ru> | 2016-10-21 21:35:40 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-18 16:46:28 +0100 |
commit | 5fa88151ecdbfc9f2092cf1add7966c546b95dfa (patch) | |
tree | f09a9468b8af747410c52b07a9d7a8f1c1a5a18d /drivers/media/usb/dvb-usb/cxusb.h | |
parent | [media] c8sectpfe: Remove clk_disable_unprepare hacks (diff) | |
download | linux-5fa88151ecdbfc9f2092cf1add7966c546b95dfa.tar.xz linux-5fa88151ecdbfc9f2092cf1add7966c546b95dfa.zip |
[media] dvb-usb-cxusb: Geniatech T230 - resync TS FIFO after lock
This patch fix streaming issue for Geniatech T230/PT360.
Signed-off-by: CrazyCat <crazycat69@narod.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb/cxusb.h')
-rw-r--r-- | drivers/media/usb/dvb-usb/cxusb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/usb/dvb-usb/cxusb.h b/drivers/media/usb/dvb-usb/cxusb.h index 18acda19527a..66429d7f69b5 100644 --- a/drivers/media/usb/dvb-usb/cxusb.h +++ b/drivers/media/usb/dvb-usb/cxusb.h @@ -37,6 +37,11 @@ struct cxusb_state { struct i2c_client *i2c_client_tuner; unsigned char data[MAX_XFER_SIZE]; + + struct mutex stream_mutex; + u8 last_lock; + int (*fe_read_status)(struct dvb_frontend *fe, + enum fe_status *status); }; #endif |