From 4b4400e12be7419fb1bc332bd71d69fac2a42378 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E9=BB=84=E6=B6=9B?= Date: Sat, 30 Jul 2011 22:48:42 +0800 Subject: [PATCH] Revert "USB: composite: Allow configurations to handle unhandled setup requests" This reverts commit 11d0a9ece74897740ffb987675c46adf1f782724. --- drivers/usb/gadget/composite.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c index 39f61affbae6..0dedc681fc30 100755 --- a/drivers/usb/gadget/composite.c +++ b/drivers/usb/gadget/composite.c @@ -836,25 +836,6 @@ unknown: value = c->setup(c, ctrl); } - /* If the vendor request is not processed (value < 0), - * call all device registered configure setup callbacks - * to process it. - * This is used to handle the following cases: - * - vendor request is for the device and arrives before - * setconfiguration. - * - Some devices are required to handle vendor request before - * setconfiguration such as MTP, USBNET. - */ - - if (value < 0) { - struct usb_configuration *cfg; - - list_for_each_entry(cfg, &cdev->configs, list) { - if (cfg && cfg->setup) - value = cfg->setup(cfg, ctrl); - } - } - goto done; } -- 2.34.1