Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303626
b: refs/heads/master
c: d372c41
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Apr 25, 2012
1 parent 1e85a02 commit 5f48793
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: a581c72a8e9e9955714e8f3b62c46312bea3f6ba
refs/heads/master: d372c4197d642763a6fde0ed3baa7cfce78df22d
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/hdpvr/hdpvr-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,15 @@ static int hdpvr_probe(struct usb_interface *interface,
/* allocate memory for our device state and initialize it */
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (!dev) {
err("Out of memory");
dev_err(&interface->dev, "Out of memory\n");
goto error;
}

dev->workqueue = 0;

/* register v4l2_device early so it can be used for printks */
if (v4l2_device_register(&interface->dev, &dev->v4l2_dev)) {
err("v4l2_device_register failed");
dev_err(&interface->dev, "v4l2_device_register failed\n");
goto error;
}

Expand Down

0 comments on commit 5f48793

Please sign in to comment.