diff options
author | 2014-06-21 01:14:32 +0000 | |
---|---|---|
committer | 2014-06-21 01:14:32 +0000 | |
commit | ae398714e5160e29a9bd042f144ad37f9b7df833 (patch) | |
tree | efc6b614ce59f5b7ba477a9b0448552a7ac00ba3 | |
parent | As suggested by jmc@, only include line and column numbers into messages (diff) | |
download | wireguard-openbsd-ae398714e5160e29a9bd042f144ad37f9b7df833.tar.xz wireguard-openbsd-ae398714e5160e29a9bd042f144ad37f9b7df833.zip |
remove useless brace block; from dhill
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index cd4700a85d5..e23a1218670 100644 --- a/sys/dev/pci/if_fxp_pci.c +++ b/sys/dev/pci/if_fxp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_pci.c,v 1.60 2013/12/06 21:03:04 deraadt Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.61 2014/06/21 01:14:32 deraadt Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -195,7 +195,6 @@ fxp_pci_attach(struct device *parent, struct device *self, void *aux) case PCI_PRODUCT_INTEL_8255x: case PCI_PRODUCT_INTEL_82559: case PCI_PRODUCT_INTEL_82559ER: - { chipname = "i82557"; if (sc->sc_revision >= FXP_REV_82558_A4) chipname = "i82558"; @@ -208,8 +207,6 @@ fxp_pci_attach(struct device *parent, struct device *self, void *aux) if (sc->sc_revision >= FXP_REV_82551_E) chipname = "i82551"; break; - } - break; case PCI_PRODUCT_INTEL_82552: chipname = "i82552"; break; |