diff options
author | Chunfeng Yun <[email protected]> | 2019-11-20 14:43:01 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2019-11-21 18:20:29 +0100 |
commit | d4836b69d9352ffbf2a2fea9735b0c7f3388a579 (patch) | |
tree | 9bb2022af42b62d517b3aa86ccae923b6479dbc5 | |
parent | 0b2c26fb1144a671d462195d4514a0453f55ebd1 (diff) |
usb: musb: create debugfs directory under usb root
Now the USB gadget subsystem can use the USB debugfs root directory,
so move musb's directory from the root of the debugfs filesystem into
the root of usb
Signed-off-by: Chunfeng Yun <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/musb/musb_debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_debugfs.c b/drivers/usb/musb/musb_debugfs.c index f42858e2b54c..7b6281ab62ed 100644 --- a/drivers/usb/musb/musb_debugfs.c +++ b/drivers/usb/musb/musb_debugfs.c @@ -325,7 +325,7 @@ void musb_init_debugfs(struct musb *musb) { struct dentry *root; - root = debugfs_create_dir(dev_name(musb->controller), NULL); + root = debugfs_create_dir(dev_name(musb->controller), usb_debug_root); musb->debugfs_root = root; debugfs_create_file("regdump", S_IRUGO, root, musb, &musb_regdump_fops); |