summaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_error.c
diff options
context:
space:
mode:
authorAndrew Thompson <thompsa@FreeBSD.org>2009-06-15 01:02:43 +0000
committerAndrew Thompson <thompsa@FreeBSD.org>2009-06-15 01:02:43 +0000
commita593f6b8de8b956bd0dd22f74805ede942e3d6a9 (patch)
treeb384d18397090617ec2f5b76c9e0ba67f45456c3 /sys/dev/usb/usb_error.c
parent8437751d864a6b02bef3a914b6dac1bcfb968794 (diff)
Notes
Diffstat (limited to 'sys/dev/usb/usb_error.c')
-rw-r--r--sys/dev/usb/usb_error.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_error.c b/sys/dev/usb/usb_error.c
index c99652bb4a4e..68a811f407e5 100644
--- a/sys/dev/usb/usb_error.c
+++ b/sys/dev/usb/usb_error.c
@@ -62,12 +62,12 @@ static const char* usb_errstr_table[USB_ERR_MAX] = {
};
/*------------------------------------------------------------------------*
- * usb2_errstr
+ * usbd_errstr
*
* This function converts an USB error code into a string.
*------------------------------------------------------------------------*/
const char *
-usb2_errstr(usb_error_t err)
+usbd_errstr(usb_error_t err)
{
return (err < USB_ERR_MAX ? usb_errstr_table[err] : "USB_ERR_UNKNOWN");
}