diff options
| author | Andrew Thompson <thompsa@FreeBSD.org> | 2010-05-17 23:44:52 +0000 |
|---|---|---|
| committer | Andrew Thompson <thompsa@FreeBSD.org> | 2010-05-17 23:44:52 +0000 |
| commit | 79e193fb18599fbc22caad2ce9c1df5fe1e1c5d6 (patch) | |
| tree | d35bbe9be1305e309a62c6803070c857120eb4e0 | |
| parent | 3bf0ccc8be58035ea51e006df04d2e73e11e2679 (diff) | |
Notes
| -rw-r--r-- | sys/dev/usb/usb_dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_dev.c b/sys/dev/usb/usb_dev.c index 2ac5b2e4edf5..524890c79f1e 100644 --- a/sys/dev/usb/usb_dev.c +++ b/sys/dev/usb/usb_dev.c @@ -182,7 +182,7 @@ usb_loc_fill(struct usb_fs_privdata* pd, struct usb_cdev_privdata *cpd) * 0: Success, refcount incremented on the given USB device. * Else: Failure. *------------------------------------------------------------------------*/ -usb_error_t +static usb_error_t usb_ref_device(struct usb_cdev_privdata *cpd, struct usb_cdev_refdata *crd, int need_uref) { @@ -327,7 +327,7 @@ usb_usb_ref_device(struct usb_cdev_privdata *cpd, * This function will release the reference count by one unit for the * given USB device. *------------------------------------------------------------------------*/ -void +static void usb_unref_device(struct usb_cdev_privdata *cpd, struct usb_cdev_refdata *crd) { |
