diff options
author | 2016-04-13 10:34:32 +0000 | |
---|---|---|
committer | 2016-04-13 10:34:32 +0000 | |
commit | 6a71aa3056b006326417238829cae237b9bb60e8 (patch) | |
tree | 3599b7a611b6d637d38811f74b9d756faf6944fa /sys/dev/pci/if_sis.c | |
parent | Re-introduce the following commit: (diff) | |
download | wireguard-openbsd-6a71aa3056b006326417238829cae237b9bb60e8.tar.xz wireguard-openbsd-6a71aa3056b006326417238829cae237b9bb60e8.zip |
G/C IFQ_SET_READY().
Diffstat (limited to 'sys/dev/pci/if_sis.c')
-rw-r--r-- | sys/dev/pci/if_sis.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/if_sis.c b/sys/dev/pci/if_sis.c index 4a00ab322b2..2c977c57819 100644 --- a/sys/dev/pci/if_sis.c +++ b/sys/dev/pci/if_sis.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sis.c,v 1.133 2016/01/08 11:23:30 mpi Exp $ */ +/* $OpenBSD: if_sis.c,v 1.134 2016/04/13 10:34:32 mpi Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -1186,7 +1186,6 @@ sis_attach(struct device *parent, struct device *self, void *aux) ifp->if_start = sis_start; ifp->if_watchdog = sis_watchdog; IFQ_SET_MAXLEN(&ifp->if_snd, SIS_TX_LIST_CNT - 1); - IFQ_SET_READY(&ifp->if_snd); bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ); ifp->if_hardmtu = 1518; /* determined experimentally on DP83815 */ |