USB: gr_udc: remove dentry storage for debugfs file
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 May 2021 10:14:26 +0000 (12:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 2 Jun 2021 14:41:00 +0000 (16:41 +0200)
There is no need to store the dentry pointer for a debugfs file that we
only use to remove it when the device goes away.  debugfs can do the
lookup for us instead, saving us some trouble, and making things smaller
overall.

Cc: Felipe Balbi <balbi@kernel.org>
Link: https://lore.kernel.org/r/20210527101426.3283214-1-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/gr_udc.c
drivers/usb/gadget/udc/gr_udc.h

index f8f3aa5..4b35739 100644 (file)
@@ -207,14 +207,15 @@ DEFINE_SHOW_ATTRIBUTE(gr_dfs);
 static void gr_dfs_create(struct gr_udc *dev)
 {
        const char *name = "gr_udc_state";
+       struct dentry *root;
 
-       dev->dfs_root = debugfs_create_dir(dev_name(dev->dev), usb_debug_root);
-       debugfs_create_file(name, 0444, dev->dfs_root, dev, &gr_dfs_fops);
+       root = debugfs_create_dir(dev_name(dev->dev), usb_debug_root);
+       debugfs_create_file(name, 0444, root, dev, &gr_dfs_fops);
 }
 
 static void gr_dfs_delete(struct gr_udc *dev)
 {
-       debugfs_remove_recursive(dev->dfs_root);
+       debugfs_remove(debugfs_lookup(dev_name(dev->dev), usb_debug_root));
 }
 
 #else /* !CONFIG_USB_GADGET_DEBUG_FS */
index ac5b3f6..7013423 100644 (file)
@@ -215,8 +215,6 @@ struct gr_udc {
        struct list_head ep_list;
 
        spinlock_t lock; /* General lock, a.k.a. "dev->lock" in comments */
-
-       struct dentry *dfs_root;
 };
 
 #define to_gr_udc(gadget)      (container_of((gadget), struct gr_udc, gadget))