summaryrefslogtreecommitdiffstats
path: root/drivers/media/pci/cx88/cx88-video.c
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2014-08-29 07:45:00 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-11-03 08:35:34 -0200
commitc39ba330322ba087f4c814f641d1818137c98e95 (patch)
treee63a7f5d8152f0244c93e855205962275584d42f /drivers/media/pci/cx88/cx88-video.c
parent078859a3230c123ed9cb798fb1cd7f89b4fde102 (diff)
downloadlinux-stable-c39ba330322ba087f4c814f641d1818137c98e95.tar.gz
linux-stable-c39ba330322ba087f4c814f641d1818137c98e95.tar.bz2
linux-stable-c39ba330322ba087f4c814f641d1818137c98e95.zip
[media] cx88: consistently use UNSET for absent tuner
Don't mix UNSET and TUNER_ABSENT: you have to pick one or the other. For this driver selecting UNSET to represent an absent tuner resulting in the fewest changes. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/pci/cx88/cx88-video.c')
-rw-r--r--drivers/media/pci/cx88/cx88-video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx88/cx88-video.c b/drivers/media/pci/cx88/cx88-video.c
index 64d6a722654c..d8a86cd4e455 100644
--- a/drivers/media/pci/cx88/cx88-video.c
+++ b/drivers/media/pci/cx88/cx88-video.c
@@ -1532,7 +1532,7 @@ static int cx8800_initdev(struct pci_dev *pci_dev,
}
/* start tvaudio thread */
- if (core->board.tuner_type != TUNER_ABSENT) {
+ if (core->board.tuner_type != UNSET) {
core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
if (IS_ERR(core->kthread)) {
err = PTR_ERR(core->kthread);