diff options
author | johan <johan@FreeBSD.org> | 2004-09-26 09:01:02 +0000 |
---|---|---|
committer | johan <johan@FreeBSD.org> | 2004-09-26 09:01:02 +0000 |
commit | 57ab183269c7ca46993f6acfcc2e3872e0f418cd (patch) | |
tree | 13999c200debd94883c083af645b13b42e88c36f /sys/pci/if_xl.c | |
parent | dc4195df1c7d8a5580a482aad7407a21aac85f5b (diff) | |
download | FreeBSD-src-57ab183269c7ca46993f6acfcc2e3872e0f418cd.zip FreeBSD-src-57ab183269c7ca46993f6acfcc2e3872e0f418cd.tar.gz |
style: Move the { back to the else line to match the }.
Discussed with: glebius
X-MFC after: 5.3-Release
Diffstat (limited to 'sys/pci/if_xl.c')
-rw-r--r-- | sys/pci/if_xl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index fa38695..dfb274a 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 { |