summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_pcn.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2014-12-08 16:21:39 +0000
committerBrad Smith <brad@cvs.openbsd.org>2014-12-08 16:21:39 +0000
commitd64ab4285317954c3762da8a5c5c5f79c0789431 (patch)
tree469244505cc658020f2a4f1706092cac3e5fc9b3 /sys/dev/pci/if_pcn.c
parent5593989617855820d29d38865677520e8d1cf7f3 (diff)
Remove a few foo_start() calls within ioctl handlers. Odd spot to have
them and the vast majority of the rest of the drivers do not do this. ok mikeb@
Diffstat (limited to 'sys/dev/pci/if_pcn.c')
-rw-r--r--sys/dev/pci/if_pcn.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/pci/if_pcn.c b/sys/dev/pci/if_pcn.c
index 07e92a7d703..107bc4ba58b 100644
--- a/sys/dev/pci/if_pcn.c
+++ b/sys/dev/pci/if_pcn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_pcn.c,v 1.30 2014/07/22 13:12:11 mpi Exp $ */
+/* $OpenBSD: if_pcn.c,v 1.31 2014/12/08 16:21:38 brad Exp $ */
/* $NetBSD: if_pcn.c,v 1.26 2005/05/07 09:15:44 is Exp $ */
/*
@@ -1091,9 +1091,6 @@ pcn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
error = 0;
}
- /* Try to get more packets going. */
- pcn_start(ifp);
-
splx(s);
return (error);
}