Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285717
b: refs/heads/master
c: aecf33d
h: refs/heads/master
i:
  285715: c89f116
v: v3
  • Loading branch information
Dan Carpenter authored and Mauro Carvalho Chehab committed Jan 6, 2012
1 parent 33359bf commit ad3fa3e
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 527f18be2d69db4752e5b7f227548a075a37749b
refs/heads/master: aecf33db58cbcb40299a7630b3b6c89aa126fcb6
3 changes: 2 additions & 1 deletion trunk/drivers/staging/media/dt3155v4l/dt3155v4l.c
Original file line number Diff line number Diff line change
Expand Up @@ -908,9 +908,10 @@ dt3155_probe(struct pci_dev *pdev, const struct pci_device_id *id)
if (err)
goto err_req_region;
pd->regs = pci_iomap(pdev, 0, pci_resource_len(pd->pdev, 0));
if (!pd->regs)
if (!pd->regs) {
err = -ENOMEM;
goto err_pci_iomap;
}
err = dt3155_init_board(pdev);
if (err)
goto err_init_board;
Expand Down

0 comments on commit ad3fa3e

Please sign in to comment.