Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45087
b: refs/heads/master
c: 054afee
h: refs/heads/master
i:
  45085: ddc01af
  45083: ff420b2
  45079: cc3576f
  45071: c6a9107
  45055: dc1301f
v: v3
  • Loading branch information
Akinobu Mita authored and Mauro Carvalho Chehab committed Dec 27, 2006
1 parent 41d0652 commit 0a7558d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 72f678c30185df18ac38ef14c9045d139c2263bc
refs/heads/master: 054afee4736677a00982f6414a983dec8ee511db
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/vivi.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@ static int vivi_start_thread(struct vivi_dmaqueue *dma_q)

dma_q->kthread = kthread_run(vivi_thread, dma_q, "vivi");

if (dma_q->kthread == NULL) {
if (IS_ERR(dma_q->kthread)) {
printk(KERN_ERR "vivi: kernel_thread() failed\n");
return -EINVAL;
return PTR_ERR(dma_q->kthread);
}
dprintk(1,"returning from %s\n",__FUNCTION__);
return 0;
Expand Down

0 comments on commit 0a7558d

Please sign in to comment.