Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325826
b: refs/heads/master
c: 3821bf4
h: refs/heads/master
v: v3
  • Loading branch information
Dan Carpenter authored and Greg Kroah-Hartman committed Aug 15, 2012
1 parent 443a0a0 commit 5d87b5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 644034c21209feaddd6d584669ffb40561525d18
refs/heads/master: 3821bf4abb7f78c90af7fa2975df6618906b11ec
8 changes: 4 additions & 4 deletions trunk/drivers/usb/host/whci/hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,16 +238,16 @@ static struct hc_driver whc_hc_driver = {

static int whc_probe(struct umc_dev *umc)
{
int ret = -ENOMEM;
int ret;
struct usb_hcd *usb_hcd;
struct wusbhc *wusbhc = NULL;
struct whc *whc = NULL;
struct wusbhc *wusbhc;
struct whc *whc;
struct device *dev = &umc->dev;

usb_hcd = usb_create_hcd(&whc_hc_driver, dev, "whci");
if (usb_hcd == NULL) {
dev_err(dev, "unable to create hcd\n");
goto error;
return -ENOMEM;
}

usb_hcd->wireless = 1;
Expand Down

0 comments on commit 5d87b5d

Please sign in to comment.