diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-02-26 09:28:52 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-02-26 09:28:52 +0000 |
commit | 33c316e3247e09a2671a5e00d67d56ae893aa496 (patch) | |
tree | 99a50ef5a909df75996712880d6c9c63b6971ede | |
parent | a0eded8271ef911ffdc6ba82e756546a8b9d58db (diff) | |
download | FreeBSD-src-33c316e3247e09a2671a5e00d67d56ae893aa496.zip FreeBSD-src-33c316e3247e09a2671a5e00d67d56ae893aa496.tar.gz |
- Correct USB 3.0 wire-speed to 5.0Gbps
MFC after: 3 days
Approved by: thompsa (mentor)
-rw-r--r-- | share/man/man4/xhci.4 | 2 | ||||
-rw-r--r-- | sys/dev/usb/controller/usb_controller.c | 2 | ||||
-rw-r--r-- | usr.sbin/usbconfig/dump.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man4/xhci.4 b/share/man/man4/xhci.4 index 983372f..670d395 100644 --- a/share/man/man4/xhci.4 +++ b/share/man/man4/xhci.4 @@ -48,7 +48,7 @@ The .Tn XHCI controller supports .Tn USB -connection speeds up to 4.8Gbps when using a USB 3.0 compliant device. +connection speeds up to 5.0Gbps when using a USB 3.0 compliant device. .Sh SEE ALSO .Xr ehci 4 , .Xr ohci 4 , diff --git a/sys/dev/usb/controller/usb_controller.c b/sys/dev/usb/controller/usb_controller.c index dc662fb..dade0ad 100644 --- a/sys/dev/usb/controller/usb_controller.c +++ b/sys/dev/usb/controller/usb_controller.c @@ -365,7 +365,7 @@ usb_bus_attach(struct usb_proc_msg *pm) case USB_REV_3_0: speed = USB_SPEED_SUPER; - device_printf(bus->bdev, "4.8Gbps Super Speed USB v3.0\n"); + device_printf(bus->bdev, "5.0Gbps Super Speed USB v3.0\n"); break; default: diff --git a/usr.sbin/usbconfig/dump.c b/usr.sbin/usbconfig/dump.c index 4e527ea..7ee89da 100644 --- a/usr.sbin/usbconfig/dump.c +++ b/usr.sbin/usbconfig/dump.c @@ -65,11 +65,11 @@ dump_speed(uint8_t value) case LIBUSB20_SPEED_VARIABLE: return ("VARIABLE (52-480Mbps)"); case LIBUSB20_SPEED_SUPER: - return ("SUPER (4.8Gbps)"); + return ("SUPER (5.0Gbps)"); default: break; } - return ("unknown"); + return ("UNKNOWN ()"); } const char * |