Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/hpcmips/vr Be explicit about our interface attributes.



details:   https://anonhg.NetBSD.org/src/rev/6f6e0e00e99a
branches:  trunk
changeset: 1021272:6f6e0e00e99a
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sat May 22 16:00:42 2021 +0000

description:
Be explicit about our interface attributes.

diffstat:

 sys/arch/hpcmips/vr/vrgiu.c |  12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diffs (40 lines):

diff -r df73bafdb042 -r 6f6e0e00e99a sys/arch/hpcmips/vr/vrgiu.c
--- a/sys/arch/hpcmips/vr/vrgiu.c       Sat May 22 15:05:36 2021 +0000
+++ b/sys/arch/hpcmips/vr/vrgiu.c       Sat May 22 16:00:42 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vrgiu.c,v 1.45 2021/04/24 23:36:38 thorpej Exp $       */
+/*     $NetBSD: vrgiu.c,v 1.46 2021/05/22 16:00:42 thorpej Exp $       */
 /*-
  * Copyright (c) 1999-2001
  *         Shin Takemura and PocketBSD Project. All rights reserved.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vrgiu.c,v 1.45 2021/04/24 23:36:38 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vrgiu.c,v 1.46 2021/05/22 16:00:42 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -268,7 +268,9 @@
        haa.haa_sc = sc;
        haa.haa_getchip = vrgiu_getchip;
        haa.haa_iot = sc->sc_iot;
-       while (config_found(self, &haa, vrgiu_print, CFARG_EOL)) ;
+       while (config_found(self, &haa, vrgiu_print,
+           CFARG_IATTR, "hpcioif",
+           CFARG_EOL)) ;
        /*
         * GIU-ISA bridge
         */
@@ -289,7 +291,9 @@
        haa.haa_sc = sc;
        haa.haa_getchip = vrgiu_getchip;
        haa.haa_iot = sc->sc_iot;
-       config_found(self, &haa, vrgiu_print, CFARG_EOL);
+       config_found(self, &haa, vrgiu_print,
+           CFARG_IATTR, "vrisabif",
+           CFARG_EOL);
 }
 
 int



Home | Main Index | Thread Index | Old Index