diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-07-25 18:54:22 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-07-25 18:54:22 +0000 |
commit | e036dfc6a10cd52b51a7ec9234f120bddbfa6dda (patch) | |
tree | 5064fbe20a92b9e8a0b57a01453e870ce9e4603e /sys/dev/usb/usbdivar.h | |
parent | 9aa55ad5ba036f0a2dfc53a80c7af7b7da3afedb (diff) | |
download | FreeBSD-src-e036dfc6a10cd52b51a7ec9234f120bddbfa6dda.zip FreeBSD-src-e036dfc6a10cd52b51a7ec9234f120bddbfa6dda.tar.gz |
Add comments, change variable names to make them consistent (r -> err,
timo_handle -> timeout_handle, p -> pipe, *pipe -> *rpipe, etc.)
Diffstat (limited to 'sys/dev/usb/usbdivar.h')
-rw-r--r-- | sys/dev/usb/usbdivar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h index 8e61d85..96354d1 100644 --- a/sys/dev/usb/usbdivar.h +++ b/sys/dev/usb/usbdivar.h @@ -170,7 +170,7 @@ struct usbd_request { void *hcpriv; /* XXX private use by the HC driver */ #if defined(__FreeBSD__) - struct callout_handle timo_handle; + struct callout_handle timeout_handle; #endif }; |