From: Greg Kroah-Hartman Date: Tue, 18 Aug 2015 16:58:26 +0000 (-0700) Subject: Revert "usb: interface authorization: Control interface probing and claiming" X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8c2ea97a3a4124628de2ed9a1f891c706788468a;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git Revert "usb: interface authorization: Control interface probing and claiming" This reverts commit de7718bd9c4d3db96991a98c2a0cb38258a04e47 as the signed-off-by address is invalid. Cc: Stefan Koch Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index 941625465e2a..6b5063e7943f 100644 --- a/drivers/usb/core/driver.c +++ b/drivers/usb/core/driver.c @@ -296,10 +296,6 @@ static int usb_probe_interface(struct device *dev) if (udev->authorized == 0) { dev_err(&intf->dev, "Device is not authorized for usage\n"); return error; - } else if (intf->authorized == 0) { - dev_err(&intf->dev, "Interface %d is not authorized for usage\n", - intf->altsetting->desc.bInterfaceNumber); - return error; } id = usb_match_dynamic_id(intf, driver); @@ -512,10 +508,6 @@ int usb_driver_claim_interface(struct usb_driver *driver, if (dev->driver) return -EBUSY; - /* reject claim if not iterface is not authorized */ - if (!iface->authorized) - return -ENODEV; - udev = interface_to_usbdev(iface); dev->driver = &driver->drvwrap.driver;