Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62282
b: refs/heads/master
c: 32b78de
h: refs/heads/master
v: v3
  • Loading branch information
Cyrill Gorcunov authored and Mauro Carvalho Chehab committed Jul 20, 2007
1 parent 4f3503e commit c5c432d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a46c5fbc6912c4e34cb7ded314249b639dc244a6
refs/heads/master: 32b78de7fee70a0bdb2081b23fc2b676ec566814
8 changes: 7 additions & 1 deletion trunk/drivers/media/video/cx88/cx88-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -1881,8 +1881,14 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
mutex_unlock(&core->lock);

/* start tvaudio thread */
if (core->tuner_type != TUNER_ABSENT)
if (core->tuner_type != TUNER_ABSENT) {
core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
if (IS_ERR(core->kthread)) {
err = PTR_ERR(core->kthread);
printk(KERN_ERR "Failed to create cx88 audio thread, err=%d\n",
err);
}
}
return 0;

fail_unreg:
Expand Down

0 comments on commit c5c432d

Please sign in to comment.