diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-01-02 05:21:41 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-01-02 05:21:41 +0000 |
commit | c11a4bd434e5d23cee65a597c8c689b07a2ea65e (patch) | |
tree | 4750f197bbc33cb513c7d5269ab28964a35f43fc /sys/arch/macppc/pci | |
parent | a05362de6022925be821415b6c442a46c2ce5349 (diff) |
remove last traces of __BROKEN_INDIRECT_CONFIG.
Thanks to aanriot@ and Michael Knudsen for checking that alpha/i386/macppc
kernels still compile.
Diffstat (limited to 'sys/arch/macppc/pci')
-rw-r--r-- | sys/arch/macppc/pci/vgafb_pci.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/arch/macppc/pci/vgafb_pci.c b/sys/arch/macppc/pci/vgafb_pci.c index c5bc4e29b1a..ab7b6781a3c 100644 --- a/sys/arch/macppc/pci/vgafb_pci.c +++ b/sys/arch/macppc/pci/vgafb_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vgafb_pci.c,v 1.15 2005/03/15 21:10:37 miod Exp $ */ +/* $OpenBSD: vgafb_pci.c,v 1.16 2006/01/02 05:21:32 brad Exp $ */ /* $NetBSD: vga_pci.c,v 1.4 1996/12/05 01:39:38 cgd Exp $ */ /* @@ -66,11 +66,7 @@ struct vgafb_pci_softc { int vgafb_pci_probe(struct pci_attach_args *pa, int id, u_int32_t *ioaddr, u_int32_t *iosize, u_int32_t *memaddr, u_int32_t *memsize, u_int32_t *cacheable, u_int32_t *mmioaddr, u_int32_t *mmiosize); -#ifdef __BROKEN_INDIRECT_CONFIG int vgafb_pci_match(struct device *, void *, void *); -#else -int vgafb_pci_match(struct device *, struct cfdata *, void *); -#endif void vgafb_pci_attach(struct device *, struct device *, void *); paddr_t vgafbpcimmap(void *, off_t, int); @@ -230,11 +226,7 @@ vgafb_pci_probe(struct pci_attach_args *pa, int id, u_int32_t *ioaddr, int vgafb_pci_match(parent, match, aux) struct device *parent; -#ifdef __BROKEN_INDIRECT_CONFIG void *match; -#else - struct cfdata *match; -#endif void *aux; { struct pci_attach_args *pa = aux; |