Skip to content

Commit

Permalink
USB: FHCI: use the new usb debugfs directory
Browse files Browse the repository at this point in the history
All usb debugfs files should be behind the usb directory, not at the
root of debugfs.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Jun 16, 2009
1 parent 08f4e58 commit 66536ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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_name(dev), NULL);
fhci->dfs_root = debugfs_create_dir(dev_name(dev), usb_debug_root);
if (!fhci->dfs_root) {
WARN_ON(1);
return;
Expand Down

0 comments on commit 66536ab

Please sign in to comment.