From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Date: Tue, 17 Apr 2012 06:32:15 +0000 Subject: [patch 2/2] target: usb-gadget: cleanup duplicate initialization Message-Id: <20120417063215.GE26756@elgon.mountain> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: kernel-janitors@vger.kernel.org Sparse points out that we initialize .bAlternateSetting twice. But fortunately USB_G_ALT_INT_BBB is zero so we initialize it to the same value both times. Signed-off-by: Dan Carpenter diff --git a/drivers/target/usb-gadget/usb_gadget.c b/drivers/target/usb-gadget/usb_gadget.c index ba62bef..78aa37e 100644 --- a/drivers/target/usb-gadget/usb_gadget.c +++ b/drivers/target/usb-gadget/usb_gadget.c @@ -1977,7 +1977,6 @@ static void usbg_deregister_configfs(void) static struct usb_interface_descriptor bot_intf_desc = { .bLength = sizeof(bot_intf_desc), .bDescriptorType = USB_DT_INTERFACE, - .bAlternateSetting = 0, .bNumEndpoints = 2, .bAlternateSetting = USB_G_ALT_INT_BBB, .bInterfaceClass = USB_CLASS_MASS_STORAGE,