USB: uhci: fix memory leak with using debugfs_lookup()
[platform/kernel/linux-starfive.git] / drivers / usb / host / uhci-hcd.c
index c22b51a..7cdc2fa 100644 (file)
@@ -536,8 +536,8 @@ static void release_uhci(struct uhci_hcd *uhci)
        uhci->is_initialized = 0;
        spin_unlock_irq(&uhci->lock);
 
-       debugfs_remove(debugfs_lookup(uhci_to_hcd(uhci)->self.bus_name,
-                                     uhci_debugfs_root));
+       debugfs_lookup_and_remove(uhci_to_hcd(uhci)->self.bus_name,
+                                 uhci_debugfs_root);
 
        for (i = 0; i < UHCI_NUM_SKELQH; i++)
                uhci_free_qh(uhci, uhci->skelqh[i]);
@@ -700,7 +700,7 @@ err_alloc_frame_cpu:
                        uhci->frame, uhci->frame_dma_handle);
 
 err_alloc_frame:
-       debugfs_remove(debugfs_lookup(hcd->self.bus_name, uhci_debugfs_root));
+       debugfs_lookup_and_remove(hcd->self.bus_name, uhci_debugfs_root);
 
        return retval;
 }