PERFORCE change 159806 for review
Hans Petter Selasky
hselasky at FreeBSD.org
Wed Mar 25 08:18:42 PDT 2009
http://perforce.freebsd.org/chv.cgi?CH=159806
Change 159806 by hselasky at hselasky_laptop001 on 2009/03/25 15:18:28
USB core:
- properly name usb2_uref_location() so that it is not
confused with usb2_unref_location() .
Affected files ...
.. //depot/projects/usb/src/sys/dev/usb/usb_dev.c#15 edit
Differences ...
==== //depot/projects/usb/src/sys/dev/usb/usb_dev.c#15 (text+ko) ====
@@ -89,7 +89,7 @@
struct usb2_cdev_privdata *);
static void usb2_close(void *);
static usb2_error_t usb2_ref_device(struct usb2_cdev_privdata *, int);
-static usb2_error_t usb2_uref_location(struct usb2_cdev_privdata *);
+static usb2_error_t usb2_usb_ref_location(struct usb2_cdev_privdata *);
static void usb2_unref_device(struct usb2_cdev_privdata *);
static d_open_t usb2_open;
@@ -264,7 +264,7 @@
}
/*------------------------------------------------------------------------*
- * usb2_uref_location
+ * usb2_usb_ref_location
*
* This function is used to upgrade an USB reference to include the
* USB device reference on a USB location.
@@ -274,7 +274,7 @@
* Else: Failure.
*------------------------------------------------------------------------*/
static usb2_error_t
-usb2_uref_location(struct usb2_cdev_privdata *cpd)
+usb2_usb_ref_location(struct usb2_cdev_privdata *cpd)
{
/*
* Check if we already got an USB reference on this location:
@@ -1038,7 +1038,7 @@
err = (f->methods->f_ioctl) (f, cmd, addr, fflags);
DPRINTFN(2, "f_ioctl cmd 0x%lx = %d\n", cmd, err);
if (err == ENOIOCTL) {
- if (usb2_uref_location(cpd)) {
+ if (usb2_usb_ref_location(cpd)) {
err = ENXIO;
goto done;
}
More information about the p4-projects
mailing list