summaryrefslogtreecommitdiff
path: root/payloads/libpayload/include/udc
diff options
context:
space:
mode:
Diffstat (limited to 'payloads/libpayload/include/udc')
-rw-r--r--payloads/libpayload/include/udc/udc.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/payloads/libpayload/include/udc/udc.h b/payloads/libpayload/include/udc/udc.h
index 99cbb1b7eb..5180177c1f 100644
--- a/payloads/libpayload/include/udc/udc.h
+++ b/payloads/libpayload/include/udc/udc.h
@@ -140,6 +140,15 @@ struct usbdev_ctrl {
*/
void (*stall)(struct usbdev_ctrl *, uint8_t ep, int in_dir, int set);
+ /**
+ * Disable controller and deallocate data structures.
+ */
+ void (*force_shutdown)(struct usbdev_ctrl *this);
+
+ /**
+ * Let queues run out, then disable controller and deallocate data
+ * structures.
+ */
void (*shutdown)(struct usbdev_ctrl *this);
/**