Add patch to fix regression on TeVII S471 devices (rhbz 963715)
This commit is contained in:
parent
d4a30401f7
commit
16900883d4
@ -749,6 +749,9 @@ Patch25074: mac80211-fix-infinite-loop-in-ieee80211_determine_chantype.patch
|
||||
Patch25075: mac80211-ignore-HT-primary-channel-while-connected.patch
|
||||
Patch25076: mac80211-continue-using-disabled-channels-while-connected.patch
|
||||
|
||||
#rhbz 963715
|
||||
Patch25077: media-cx23885-Fix-TeVii-S471-regression-since-introduction-of-ts2020.patch
|
||||
|
||||
# END OF PATCH DEFINITIONS
|
||||
|
||||
%endif
|
||||
@ -1452,6 +1455,9 @@ ApplyPatch mac80211-fix-infinite-loop-in-ieee80211_determine_chantype.patch
|
||||
ApplyPatch mac80211-ignore-HT-primary-channel-while-connected.patch
|
||||
ApplyPatch mac80211-continue-using-disabled-channels-while-connected.patch
|
||||
|
||||
#rhbz 963715
|
||||
ApplyPatch media-cx23885-Fix-TeVii-S471-regression-since-introduction-of-ts2020.patch
|
||||
|
||||
# END OF PATCH APPLICATIONS
|
||||
|
||||
%endif
|
||||
@ -2246,6 +2252,7 @@ fi
|
||||
# || ||
|
||||
%changelog
|
||||
* Thu Aug 15 2013 Josh Boyer <jwboyer@redhat.com> - 3.11.0-0.rc5.git3.1
|
||||
- Add patch to fix regression on TeVII S471 devices (rhbz 963715)
|
||||
- Linux v3.11-rc5-35-gf1d6e17
|
||||
|
||||
* Wed Aug 14 2013 Josh Boyer <jwboyer@redhat.com> - 3.11.0-0.rc5.git2.1
|
||||
|
@ -0,0 +1,30 @@
|
||||
From b43ea8068d2090cb1e44632c8a938ab40d2c7419 Mon Sep 17 00:00:00 2001
|
||||
From: Johannes Koch <johannes@ortsraum.de>
|
||||
Date: Wed, 17 Jul 2013 17:28:16 +0000
|
||||
Subject: [media] cx23885: Fix TeVii S471 regression since introduction of ts2020
|
||||
|
||||
Patch to make TeVii S471 cards use the ts2020 tuner, since ds3000 driver no
|
||||
longer contains tuning code.
|
||||
|
||||
Signed-off-by: Johannes Koch <johannes@ortsraum.de>
|
||||
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
|
||||
---
|
||||
(limited to 'drivers/media/pci/cx23885/cx23885-dvb.c')
|
||||
|
||||
diff --git a/drivers/media/pci/cx23885/cx23885-dvb.c b/drivers/media/pci/cx23885/cx23885-dvb.c
|
||||
index 9c5ed10..bb291c6 100644
|
||||
--- a/drivers/media/pci/cx23885/cx23885-dvb.c
|
||||
+++ b/drivers/media/pci/cx23885/cx23885-dvb.c
|
||||
@@ -1249,6 +1249,10 @@ static int dvb_register(struct cx23885_tsport *port)
|
||||
fe0->dvb.frontend = dvb_attach(ds3000_attach,
|
||||
&tevii_ds3000_config,
|
||||
&i2c_bus->i2c_adap);
|
||||
+ if (fe0->dvb.frontend != NULL) {
|
||||
+ dvb_attach(ts2020_attach, fe0->dvb.frontend,
|
||||
+ &tevii_ts2020_config, &i2c_bus->i2c_adap);
|
||||
+ }
|
||||
break;
|
||||
case CX23885_BOARD_PROF_8000:
|
||||
i2c_bus = &dev->i2c_bus[0];
|
||||
--
|
||||
cgit v0.9.2
|
Loading…
Reference in New Issue
Block a user