diff options
| author | Andrew Thompson <thompsa@FreeBSD.org> | 2009-03-20 21:50:54 +0000 |
|---|---|---|
| committer | Andrew Thompson <thompsa@FreeBSD.org> | 2009-03-20 21:50:54 +0000 |
| commit | 578d0eff90183f6bb6a9c529ca7ef67f01a17662 (patch) | |
| tree | 2c0305c112077574481c91ab5419d169d6341a3b /sys/dev/usb/usb_device.h | |
| parent | bdc081c60ff09707a85971b94c9177d16cc72033 (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb/usb_device.h')
| -rw-r--r-- | sys/dev/usb/usb_device.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/usb_device.h b/sys/dev/usb/usb_device.h index 3ec5ad5f7a6e..29d3aa91708d 100644 --- a/sys/dev/usb/usb_device.h +++ b/sys/dev/usb/usb_device.h @@ -87,10 +87,10 @@ struct usb2_device_flags { * in this structure is protected by the USB BUS lock. */ struct usb2_power_save { - int last_xfer_time; /* copy of "ticks" */ - uint32_t type_refs[4]; /* transfer reference count */ - uint32_t read_refs; /* data read references */ - uint32_t write_refs; /* data write references */ + usb2_ticks_t last_xfer_time; /* copy of "ticks" */ + usb2_size_t type_refs[4]; /* transfer reference count */ + usb2_size_t read_refs; /* data read references */ + usb2_size_t write_refs; /* data write references */ uint8_t suspended; /* set if USB device is suspended */ }; @@ -128,7 +128,7 @@ struct usb2_device { LIST_HEAD(,usb2_fs_privdata) pd_list; - uint32_t plugtime; /* copy of "ticks" */ + usb2_ticks_t plugtime; /* copy of "ticks" */ uint16_t refcount; #define USB_DEV_REF_MAX 0xffff |
