aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Hovold <[email protected]>2021-03-22 16:53:14 +0100
committerGreg Kroah-Hartman <[email protected]>2021-03-23 13:27:13 +0100
commitdda6faaa2bdadc56b9ad034602307a51d11e26a7 (patch)
treefc28a472bc3f64386534f4d28d409c2b2e54faec
parent8111a8cbd5dde0b6ea8c388ff4840d4e465b5edd (diff)
USB: cdc-acm: drop redundant driver-data reset
There's no need to clear the interface driver data on failed probe (and driver core will clear it anyway). Acked-by: Oliver Neukum <[email protected]> Signed-off-by: Johan Hovold <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/usb/class/cdc-acm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index d73570d31ed8..104e10b4ebfa 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -1528,7 +1528,6 @@ alloc_fail6:
}
device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities);
alloc_fail5:
- usb_set_intfdata(intf, NULL);
for (i = 0; i < ACM_NW; i++)
usb_free_urb(acm->wb[i].urb);
alloc_fail4: