Remove some more warnings left over from NetBSD's new config.
authorbriggs <briggs@openbsd.org>
Wed, 12 Mar 1997 13:36:56 +0000 (13:36 +0000)
committerbriggs <briggs@openbsd.org>
Wed, 12 Mar 1997 13:36:56 +0000 (13:36 +0000)
sys/arch/mac68k/dev/adb.c
sys/arch/mac68k/dev/grf.c
sys/arch/mac68k/dev/grf_mv.c
sys/arch/mac68k/dev/if_ae_nubus.c
sys/arch/mac68k/dev/obio.c
sys/arch/mac68k/dev/z8530tty.c
sys/arch/mac68k/dev/zs.c
sys/arch/mac68k/mac68k/fpu.c
sys/arch/mac68k/mac68k/machdep.c
sys/arch/mac68k/mac68k/mainbus.c

index 33614c3..30a4176 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: adb.c,v 1.7 1997/02/23 06:04:52 briggs Exp $  */
+/*     $OpenBSD: adb.c,v 1.8 1997/03/12 13:36:56 briggs Exp $  */
 /*     $NetBSD: adb.c,v 1.13 1996/12/16 16:17:02 scottr Exp $  */
 
 /*-
@@ -49,7 +49,7 @@ e*    notice, this list of conditions and the following disclaimer in the
 /*
  * Function declarations.
  */
-static int     adbmatch __P((struct device *, struct cfdata *, void *));
+static int     adbmatch __P((struct device *, void *, void *));
 static void    adbattach __P((struct device *, struct device *, void *));
 
 /*
@@ -94,9 +94,9 @@ struct cfdriver adb_cd = {
 };
 
 static int
-adbmatch(parent, cf, aux)
+adbmatch(parent, vcf, aux)
        struct device *parent;
-       struct cfdata *cf;
+       void *vcf;
        void *aux;
 {
        return 1;
index 233524a..8e86c87 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: grf.c,v 1.6 1997/03/08 16:16:50 briggs Exp $  */
+/*     $OpenBSD: grf.c,v 1.7 1997/03/12 13:36:57 briggs Exp $  */
 /*     $NetBSD: grf.c,v 1.41 1997/02/24 06:20:04 scottr Exp $  */
 
 /*
@@ -83,7 +83,7 @@
 #define        iteoff(u,f)
 #endif
 
-int    grfmatch __P((struct device *, struct cfdata *, void *));
+int    grfmatch __P((struct device *, void *, void *));
 void   grfattach __P((struct device *, struct device *, void *));
 
 struct cfdriver grf_cd = {
@@ -103,9 +103,9 @@ static int grfdebug = (GDB_DEVNO|GDB_MMAP|GDB_IOMAP|GDB_LOCK);
 #endif
 
 int
-grfmatch(parent, cf, aux)
+grfmatch(parent, vcf, aux)
        struct device *parent;
-       struct cfdata *cf;
+       void *vcf;
        void *aux;
 {
        struct grfbus_attach_args *ga = aux;
index febd98d..bfdc7f5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: grf_mv.c,v 1.7 1997/03/08 16:16:51 briggs Exp $       */
+/*     $OpenBSD: grf_mv.c,v 1.8 1997/03/12 13:36:57 briggs Exp $       */
 /*     $NetBSD: grf_mv.c,v 1.17 1997/02/24 06:20:06 scottr Exp $       */
 
 /*
@@ -60,7 +60,7 @@ static char zero = 0;
 
 static int     grfmv_mode __P((struct grf_softc *gp, int cmd, void *arg));
 static caddr_t grfmv_phys __P((struct grf_softc *gp, vm_offset_t addr));
-static int     grfmv_match __P((struct device *, struct cfdata *, void *));
+static int     grfmv_match __P((struct device *, void *, void *));
 static void    grfmv_attach __P((struct device *, struct device *, void *));
 
 struct cfdriver macvid_cd = {
@@ -162,9 +162,9 @@ grfmv_intr(vsc, slot)
 }
 
 static int
-grfmv_match(parent, cf, aux)
+grfmv_match(parent, vcf, aux)
        struct device *parent;
-       struct cfdata *cf;
+       void *vcf;
        void *aux;
 {
        struct nubus_attach_args *na = (struct nubus_attach_args *) aux;
index a0f5190..40e44f0 100644 (file)
@@ -1,4 +1,5 @@
 /*     $NetBSD: if_ae_nubus.c,v 1.5 1997/02/28 08:56:06 scottr Exp $   */
+/*     $OpenBSD: if_ae_nubus.c,v 1.2 1997/03/12 13:36:58 briggs Exp $  */
 
 /*
  * Copyright (C) 1997 Scott Reynolds
@@ -101,7 +102,6 @@ ae_nubus_match(parent, vcf, aux)
 
        bus_space_unmap(na->na_tag, bsh, NBMEMSIZE);
 
-printf("ae_nubus_match returning %d\n", rv);
        return rv;
 }
 
@@ -123,7 +123,6 @@ ae_nubus_attach(parent, self, aux)
        int i;
 #endif
 
-printf("ae_nubus_attach\n");
        bst = na->na_tag;
        if (bus_space_map(bst, NUBUS_SLOT2PA(na->slot), NBMEMSIZE,
            0, &bsh)) {
@@ -143,7 +142,6 @@ printf("ae_nubus_attach\n");
 
        success = 0;
 
-printf("ae_nubus_attach vendor switch\n");
        switch (sc->vendor) {
        case AE_VENDOR_APPLE:   /* Apple-compatible cards */
        case AE_VENDOR_ASANTE:
@@ -299,7 +297,6 @@ printf("ae_nubus_attach vendor switch\n");
        default:
                break;
        }
-printf("ae_nubus_attach vendor switch done\n");
 
        if (!success) {
                bus_space_unmap(bst, bsh, NBMEMSIZE);
index f8ad9d6..3f20bd4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: obio.c,v 1.3 1997/03/08 16:16:57 briggs Exp $ */
+/*     $OpenBSD: obio.c,v 1.4 1997/03/12 13:36:58 briggs Exp $ */
 /*     $NetBSD: obio.c,v 1.7 1997/02/13 19:01:07 scottr Exp $  */
 
 /*
 
 #include <mac68k/dev/obiovar.h>
 
-static int     obio_match __P((struct device *, struct cfdata *, void *));
+static int     obio_match __P((struct device *, void *, void *));
 static void    obio_attach __P((struct device *, struct device *, void *));
 static int     obio_print __P((void *, const char *));
-static int     obio_search __P((struct device *, struct cfdata *, void *));
+static int     obio_search __P((struct device *, void *, void *));
 
 struct cfattach obio_ca = {
        sizeof(struct device), obio_match, obio_attach
@@ -59,9 +59,9 @@ struct cfdriver obio_cd = {
 };
 
 static int
-obio_match(parent, cf, aux)
+obio_match(parent, vcf, aux)
        struct device *parent;
-       struct cfdata *cf;
+       void *vcf;
        void *aux;
 {
        static int obio_matched = 0;
@@ -100,12 +100,13 @@ obio_print(args, name)
 }
 
 int
-obio_search(parent, cf, aux)
+obio_search(parent, vcf, aux)
        struct device *parent;
-       struct cfdata *cf;
+       void *vcf;
        void *aux;
 {
        struct obio_attach_args oa;
+       struct cfdata   *cf = (struct cfdata *) vcf;
 
        oa.oa_addr = cf->cf_loc[0];
        oa.oa_drq = cf->cf_loc[1];
index cb35ad8..f32adbd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: z8530tty.c,v 1.7 1997/03/11 21:03:02 gene Exp $       */
+/*     $OpenBSD: z8530tty.c,v 1.8 1997/03/12 13:36:58 briggs Exp $     */
 /*     $NetBSD: z8530tty.c,v 1.10 1996/12/18 05:17:44 scottr Exp $     */
 
 /*
@@ -122,6 +122,7 @@ zstty_match(parent, vcf, aux)
        void *vcf;
        void *aux;
 {
+       struct cfdata *cf = (struct cfdata *) vcf;
        struct zsc_attach_args *args = aux;
        struct cfdata *cf = vcf;
 
index 8cdeb5f..9c27764 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: zs.c,v 1.8 1997/03/11 21:03:03 gene Exp $     */
+/*     $OpenBSD: zs.c,v 1.9 1997/03/12 13:36:59 briggs Exp $   */
 /*     $NetBSD: zs.c,v 1.12 1996/12/18 05:04:22 scottr Exp $   */
 
 /*
@@ -204,9 +204,9 @@ int zssoft __P((void *));
  * Is the zs chip present?
  */
 static int
-zsc_match(parent, cf, aux)
+zsc_match(parent, vcf, aux)
        struct device *parent;
-       void *cf;
+       void *vcf;
        void *aux;
 {
        return 1;
index 345d9ec..469c55b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fpu.c,v 1.8 1997/03/11 21:03:04 gene Exp $    */
+/*     $OpenBSD: fpu.c,v 1.9 1997/03/12 13:37:00 briggs Exp $  */
 /*     $NetBSD: fpu.c,v 1.21 1996/12/16 16:17:16 scottr Exp $  */
 
 /*-
@@ -72,9 +72,9 @@ struct cfdriver fpu_cd = {
 };
 
 static int
-fpu_match(parent, cf, aux)
+fpu_match(parent, vcf, aux)
        struct device *parent;
-       void *cf;
+       void *vcf;
        void *aux;
 {
        return 1;
index 4557f78..bce71ae 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.31 1997/03/08 16:17:04 briggs Exp $     */
+/*     $OpenBSD: machdep.c,v 1.32 1997/03/12 13:37:00 briggs Exp $     */
 /*     $NetBSD: machdep.c,v 1.134 1997/02/14 06:15:30 scottr Exp $     */
 
 /*
@@ -2493,6 +2493,9 @@ setmachdep()
                break;
        case MACH_CLASSQ:
         case MACH_CLASSQ2:
+               mac68k_vidlog = mac68k_vidphys = 0xf9000000;
+               /* Not really, but using too little memory would be wrong */
+               mac68k_vidlen = 2 * 1024 * 1024;
        case MACH_CLASSAV:
                VIA2 = 1;
                IOBase = 0x50f00000;
@@ -2502,10 +2505,6 @@ setmachdep()
                mac68k_machine.sccClkConst = 115200;
                via_reg(VIA1, vIER) = 0x7f;     /* disable VIA1 int */
                via_reg(VIA2, vIER) = 0x7f;     /* disable VIA2 int */
-               if (cpui->machineid == MACH_MACQ700) {
-                       mac68k_vidlog = mac68k_vidphys = 0xf9000000;
-                       mac68k_vidlen = 2 * 1024 * 1024;
-               }
                break;
        case MACH_CLASSIIci:
                VIA2 = 0x13;
index b7eea67..8919d0b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mainbus.c,v 1.5 1997/03/11 21:03:04 gene Exp $        */
+/*     $OpenBSD: mainbus.c,v 1.6 1997/03/12 13:37:01 briggs Exp $      */
 /*     $NetBSD: mainbus.c,v 1.7 1996/12/17 06:47:41 scottr Exp $       */
 
 /*
@@ -54,9 +54,9 @@ struct cfdriver mainbus_cd = {
 };
 
 static int
-mainbus_match(parent, cf, aux)
+mainbus_match(parent, vcf, aux)
        struct device *parent;
-       void *cf;
+       void *vcf;
        void *aux;
 {
        static int mainbus_matched = 0;
@@ -86,7 +86,7 @@ mainbus_search(parent, vcf, aux)
        void *vcf;
        void *aux;
 {
-       struct cfdata *cf = vcf;
+       struct cfdata *cf = (struct cfdata *) vcf;
 
        if ((*cf->cf_attach->ca_match)(parent, cf, NULL) > 0)
                config_attach(parent, cf, NULL, NULL);