diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-06-19 18:46:42 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-06-19 18:46:42 +0000 |
commit | abe6ef910ba2aecb439bfce4a49a3140122496df (patch) | |
tree | 2e2cc8b4c2496c3d623cbf86edf7611c15b2859e /sys/dev | |
parent | 67c57d794a1c6c30add196678ced7dacf9b21498 (diff) |
remove __BROKEN_INDIRECT_CONFIG cruft.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_en_pci.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/dev/pci/if_en_pci.c b/sys/dev/pci/if_en_pci.c index 4797a0f0a1d..d701fa4e717 100644 --- a/sys/dev/pci/if_en_pci.c +++ b/sys/dev/pci/if_en_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_en_pci.c,v 1.9 2002/03/14 01:26:58 millert Exp $ */ +/* $OpenBSD: if_en_pci.c,v 1.10 2002/06/19 18:46:41 fgsch Exp $ */ /* * @@ -109,11 +109,7 @@ struct en_pci_softc { * prototypes */ -#ifdef __BROKEN_INDIRECT_CONFIG static int en_pci_match(struct device *, void *, void *); -#else -static int en_pci_match(struct device *, struct cfdata *, void *); -#endif static void en_pci_attach(struct device *, struct device *, void *); /* @@ -162,11 +158,7 @@ void *v; static int en_pci_match(parent, match, aux) struct device *parent; -#ifdef __BROKEN_INDIRECT_CONFIG void *match; -#else -struct cfdata *match; -#endif void *aux; { |