aboutsummaryrefslogtreecommitdiff
path: root/include/usb
diff options
context:
space:
mode:
authorƁukasz Majewski <l.majewski@samsung.com>2012-03-12 22:08:06 +0000
committerMarek Vasut <marek.vasut@gmail.com>2012-03-19 00:08:25 +0100
commit7cf7beffaf8135c8af989609075ed1221282fd14 (patch)
tree7c21a760ae608388c47ba7317877b7da1cce6f34 /include/usb
parentf50dcd60a03a3fe7bbb7d43d6fe070602bda6989 (diff)
usb:udc:samsung:fix Remove the req_config flag
The dev->req_config flag was indicating that the forwarded request needs to perform the usb gadget delayed status. This is however not needed anymore, so it can be removed. Signed-off-by: Lukasz Majewski <l.majewski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/usb')
-rw-r--r--include/usb/s3c_udc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb/s3c_udc.h b/include/usb/s3c_udc.h
index 31d8f6cba..6c973b699 100644
--- a/include/usb/s3c_udc.h
+++ b/include/usb/s3c_udc.h
@@ -102,7 +102,7 @@ struct s3c_udc {
unsigned char usb_address;
- unsigned req_pending:1, req_std:1, req_config:1;
+ unsigned req_pending:1, req_std:1;
};
extern struct s3c_udc *the_controller;