diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-04-23 20:21:32 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-04-23 20:21:32 +0000 |
commit | 3950afe50a81366d6a486374e22c10be8e7296ab (patch) | |
tree | f16e5b84a8cd8a65e08658182542489c1e4175f8 /sys/dev/usb | |
parent | 4795f4a8109402b06f3dda778d737564ed70cd56 (diff) |
Remove superfluous use of usb_callout_init() (== timeout_set()).
Superfluous because the immediately following usb_callout() does the
same timeout_set(). And superfluous because the same usb_callout_init
was done during attach.
ok dlg@
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/if_axe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/if_axe.c b/sys/dev/usb/if_axe.c index 732aedf00b7..d13ff028c4e 100644 --- a/sys/dev/usb/if_axe.c +++ b/sys/dev/usb/if_axe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axe.c,v 1.48 2006/04/13 15:27:49 jolan Exp $ */ +/* $OpenBSD: if_axe.c,v 1.49 2006/04/23 20:21:31 krw Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000-2003 @@ -1322,7 +1322,6 @@ axe_init(void *xsc) splx(s); - usb_callout_init(sc->axe_stat_ch); usb_callout(sc->axe_stat_ch, hz, axe_tick, sc); return; } |