diff options
author | 2005-07-01 04:09:19 +0000 | |
---|---|---|
committer | 2005-07-01 04:09:19 +0000 | |
commit | bc99c1d1741d74adef062624bb136a3d5748cdb9 (patch) | |
tree | 743596ffc9887eab0d9c8ee8c88e3ed3ffd91754 | |
parent | fix a couple of signed->unsigned warnings lint found (diff) | |
download | wireguard-openbsd-bc99c1d1741d74adef062624bb136a3d5748cdb9.tar.xz wireguard-openbsd-bc99c1d1741d74adef062624bb136a3d5748cdb9.zip |
Remove duplicate if_start assignment. ok dlg@
-rw-r--r-- | sys/dev/usb/if_atu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/if_atu.c b/sys/dev/usb/if_atu.c index ce63cbc1556..c69fcf016c8 100644 --- a/sys/dev/usb/if_atu.c +++ b/sys/dev/usb/if_atu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_atu.c,v 1.60 2005/05/23 20:09:31 jsg Exp $ */ +/* $OpenBSD: if_atu.c,v 1.61 2005/07/01 04:09:19 jsg Exp $ */ /* * Copyright (c) 2003, 2004 * Daan Vreeken <Danovitsch@Vitsch.net>. All rights reserved. @@ -1452,7 +1452,6 @@ atu_complete_attach(struct atu_softc *sc) ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_start = atu_start; ifp->if_ioctl = atu_ioctl; - ifp->if_start = atu_start; ifp->if_watchdog = atu_watchdog; ifp->if_mtu = ATU_DEFAULT_MTU; IFQ_SET_READY(&ifp->if_snd); |