Changeset a36c4aa in mainline for uspace/drv/bus/usb/xhci
- Timestamp:
- 2025-08-12T18:03:48Z (7 months ago)
- Branches:
- master
- Children:
- 113fb4f
- Parents:
- 2e9f284
- Location:
- uspace/drv/bus/usb/xhci
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
r2e9f284 ra36c4aa 166 166 speeds[psiv].major = major; 167 167 speeds[psiv].minor = minor; 168 str_ncpy(speeds[psiv].name, 4, name.str, 4);168 memcpy(speeds[psiv].name, name.str, 4); 169 169 speeds[psiv].usb_speed = USB_SPEED_MAX; 170 170 -
uspace/drv/bus/usb/xhci/hw_struct/regs.h
r2e9f284 ra36c4aa 551 551 552 552 typedef union { 553 char str [4];553 char str[4] __attribute__((nonstring)); 554 554 uint32_t packed; 555 555 } xhci_sp_name_t; -
uspace/drv/bus/usb/xhci/rh.h
r2e9f284 ra36c4aa 51 51 */ 52 52 typedef struct xhci_port_speed { 53 char name [4];53 char name[4] __attribute__((nonstring)); 54 54 uint8_t major, minor; 55 55 uint64_t rx_bps, tx_bps;
Note:
See TracChangeset
for help on using the changeset viewer.
