diff options
author | imp <imp@FreeBSD.org> | 2006-09-06 23:44:25 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-09-06 23:44:25 +0000 |
commit | 443562c9361136ebb76d499cdf93484e86af89c1 (patch) | |
tree | 2e077467ef96a921aba05ed82c82656b8e7d5369 /sys/dev/usb/usb_ethersubr.c | |
parent | 4a25cdf4531b9b1eec541b4aee4e478838742f84 (diff) | |
download | FreeBSD-src-443562c9361136ebb76d499cdf93484e86af89c1.zip FreeBSD-src-443562c9361136ebb76d499cdf93484e86af89c1.tar.gz |
s/Static/static/g
s/device_ptr_t/device_t/g
No md5 changes in the .o's
# Note to the md5 tracking club: $FreeBSD$ changes md5 after every commit
# so you need to checkout -kk to get $FreeBSD$ instead of the actual value
# of the keyword.
Diffstat (limited to 'sys/dev/usb/usb_ethersubr.c')
-rw-r--r-- | sys/dev/usb/usb_ethersubr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/usb_ethersubr.c b/sys/dev/usb/usb_ethersubr.c index 90eff91..d7fe76d 100644 --- a/sys/dev/usb/usb_ethersubr.c +++ b/sys/dev/usb/usb_ethersubr.c @@ -68,13 +68,13 @@ __FBSDID("$FreeBSD$"); #include <dev/usb/usb.h> #include <dev/usb/usb_ethersubr.h> -Static struct ifqueue usbq_rx; -Static struct ifqueue usbq_tx; -Static int mtx_inited = 0; +static struct ifqueue usbq_rx; +static struct ifqueue usbq_tx; +static int mtx_inited = 0; -Static void usbintr (void); +static void usbintr (void); -Static void usbintr(void) +static void usbintr(void) { struct mbuf *m; struct usb_qdat *q; |