summaryrefslogtreecommitdiff
path: root/src/host/ohci
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/ohci')
-rw-r--r--src/host/ohci/ohci.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/host/ohci/ohci.h b/src/host/ohci/ohci.h
index bfcdaf9a3..76d6fff61 100644
--- a/src/host/ohci/ohci.h
+++ b/src/host/ohci/ohci.h
@@ -1,4 +1,4 @@
-/*
+/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
@@ -208,7 +208,11 @@ typedef volatile struct
uint32_t interrupt_routing : 1;
uint32_t remote_wakeup_connected : 1;
uint32_t remote_wakeup_enale : 1;
- uint32_t : 0;
+#if CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT
+ uint32_t unused : 21;
+#else
+ uint32_t : 0;
+#endif /* CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT */
}control_bit;
};
@@ -276,7 +280,11 @@ typedef volatile struct
uint32_t port_suspend_status_change : 1;
uint32_t port_over_current_indicator_change : 1;
uint32_t port_reset_status_change : 1;
+#if CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT
+ uint32_t unused : 11;
+#else
uint32_t : 0;
+#endif /* CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT */
}rhport_status_bit[2];
};
}ohci_registers_t;