From f6a9ec137a5281f3e8f389681fd50de7dbe5e0c1 Mon Sep 17 00:00:00 2001 From: wpaul Date: Sun, 15 Oct 2000 21:15:38 +0000 Subject: [PATCH] Fix one instance of XL_LOCK() that should have been XL_UNLOCK(). After doing this so many times, I guess I was entitled to at least one typo. Thanks to all who spotted this. --- sys/pci/if_xl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index 278759909e9b..cc25b3063ba3 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -2082,7 +2082,7 @@ static void xl_intr(arg) if (ifp->if_snd.ifq_head != NULL) (*ifp->if_start)(ifp); - XL_LOCK(sc); + XL_UNLOCK(sc); return; }