diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-07-01 04:09:20 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-07-01 04:09:20 +0000 |
commit | d58607e9f0c693d024dd7e6e8886d1b097af7655 (patch) | |
tree | ec909d9b54e7449451ee69e4900368c75e19dd8a /sys/dev/usb/if_atu.c | |
parent | 468c4819c77cadd252e7f9e6c947a49bedf06abf (diff) |
Remove duplicate if_start assignment. ok dlg@
Diffstat (limited to 'sys/dev/usb/if_atu.c')
-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); |