From 1868ee666e7ca237a685be6eab1d1cc03e4fa6ae Mon Sep 17 00:00:00 2001 From: Johan Karlsson Date: Sun, 26 Sep 2004 09:01:02 +0000 Subject: [PATCH] style: Move the { back to the else line to match the }. Discussed with: glebius X-MFC after: 5.3-Release --- sys/pci/if_xl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index fa3869555472..dfb274af7519 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -3033,8 +3033,8 @@ xl_ioctl(struct ifnet *ifp, u_long command, caddr_t data) CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt); XL_SEL_WIN(7); - } else - if ((ifp->if_flags & IFF_RUNNING) == 0) { + } else { + if ((ifp->if_flags & IFF_RUNNING) == 0) xl_init_locked(sc); } } else {