Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357325
b: refs/heads/master
c: ef89fff
h: refs/heads/master
i:
  357323: fec8e23
v: v3
  • Loading branch information
Kamil Debski authored and Mauro Carvalho Chehab committed Jan 6, 2013
1 parent e0d2afd commit e665cff
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: 2e731e443fcc8e4553201ad0573c1d5571e906ac
refs/heads/master: ef89fff874758c0f08501bdc2932b7e77421cfc6
4 changes: 2 additions & 2 deletions trunk/drivers/media/platform/s5p-mfc/s5p_mfc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1135,12 +1135,12 @@ static int s5p_mfc_probe(struct platform_device *pdev)
}

dev->alloc_ctx[0] = vb2_dma_contig_init_ctx(dev->mem_dev_l);
if (IS_ERR_OR_NULL(dev->alloc_ctx[0])) {
if (IS_ERR(dev->alloc_ctx[0])) {
ret = PTR_ERR(dev->alloc_ctx[0]);
goto err_res;
}
dev->alloc_ctx[1] = vb2_dma_contig_init_ctx(dev->mem_dev_r);
if (IS_ERR_OR_NULL(dev->alloc_ctx[1])) {
if (IS_ERR(dev->alloc_ctx[1])) {
ret = PTR_ERR(dev->alloc_ctx[1]);
goto err_mem_init_ctx_1;
}
Expand Down

0 comments on commit e665cff

Please sign in to comment.