Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 133436
b: refs/heads/master
c: 6866ac9
h: refs/heads/master
v: v3
  • Loading branch information
Sachin Sant authored and Greg Kroah-Hartman committed Mar 24, 2009
1 parent f4c8ebd commit aaf98ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: 54ca5412b5576fdb0a4ea4fedf6565bd6f34150c
refs/heads/master: 6866ac9db02ac1ec71f2aa720a1019581f69a725
2 changes: 1 addition & 1 deletion trunk/drivers/usb/host/fhci-dbg.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void fhci_dfs_create(struct fhci_hcd *fhci)
{
struct device *dev = fhci_to_hcd(fhci)->self.controller;

fhci->dfs_root = debugfs_create_dir(dev->bus_id, NULL);
fhci->dfs_root = debugfs_create_dir(dev_name(dev), NULL);
if (!fhci->dfs_root) {
WARN_ON(1);
return;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/usb/host/fhci-hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ static int __devinit of_fhci_probe(struct of_device *ofdev,
if (sprop && strcmp(sprop, "host"))
return -ENODEV;

hcd = usb_create_hcd(&fhci_driver, dev, dev->bus_id);
hcd = usb_create_hcd(&fhci_driver, dev, dev_name(dev));
if (!hcd) {
dev_err(dev, "could not create hcd\n");
return -ENOMEM;
Expand Down Expand Up @@ -650,7 +650,7 @@ static int __devinit of_fhci_probe(struct of_device *ofdev,
}
}

ret = gpio_request(gpio, dev->bus_id);
ret = gpio_request(gpio, dev_name(dev));
if (ret) {
dev_err(dev, "failed to request gpio %d", i);
goto err_gpios;
Expand Down

0 comments on commit aaf98ad

Please sign in to comment.