diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-06-21 01:14:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-06-21 01:14:33 +0000 |
commit | aa99d230880093fe97a033f96f1e9b236c66630a (patch) | |
tree | 7d05db11a943321315be62654f00487f9d6a0c84 /sys | |
parent | 9999ebc80ee1df63e3257e4fa41715be601a7bed (diff) |
remove useless brace block; from dhill
Diffstat (limited to 'sys')
-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; |