summaryrefslogtreecommitdiffstats
path: root/drivers/usb/gadget/udc/amd5536udc.h
diff options
context:
space:
mode:
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>2015-09-22 18:54:30 +0530
committerFelipe Balbi <balbi@ti.com>2015-10-01 12:40:20 -0500
commit76c3727da1e6e2bd5aa012841ea17c7664f0638b (patch)
tree234ee909f73a9bbfc74fac0ce7df5b4bca401c88 /drivers/usb/gadget/udc/amd5536udc.h
parentf349dd3c76039a2b0bf03a11484dd2850868b7e3 (diff)
downloadlinux-76c3727da1e6e2bd5aa012841ea17c7664f0638b.tar.gz
linux-76c3727da1e6e2bd5aa012841ea17c7664f0638b.tar.bz2
linux-76c3727da1e6e2bd5aa012841ea17c7664f0638b.zip
usb: gadget: amd5536udc: remove unnecessary conditions
The condition checking for irq_registered, regs, mem_region and active are not required as this is the remove function. And we are in the remove means that probe was successful and they can never be NULL at this point of code. It was required in the original code as the remove function was part of the error handler of probe function. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/udc/amd5536udc.h')
-rw-r--r--drivers/usb/gadget/udc/amd5536udc.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/gadget/udc/amd5536udc.h b/drivers/usb/gadget/udc/amd5536udc.h
index 6744d3b83109..4638d707f169 100644
--- a/drivers/usb/gadget/udc/amd5536udc.h
+++ b/drivers/usb/gadget/udc/amd5536udc.h
@@ -526,14 +526,11 @@ struct udc {
struct udc_ep ep[UDC_EP_NUM];
struct usb_gadget_driver *driver;
/* operational flags */
- unsigned active : 1,
- stall_ep0in : 1,
+ unsigned stall_ep0in : 1,
waiting_zlp_ack_ep0in : 1,
set_cfg_not_acked : 1,
- irq_registered : 1,
data_ep_enabled : 1,
data_ep_queued : 1,
- mem_region : 1,
sys_suspended : 1,
connected;