Source-Changes-HG archive

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

[src/trunk]: src/sys/arch mips: Use device_set_private in a few drivers.



details:   https://anonhg.NetBSD.org/src/rev/21378681db50
branches:  trunk
changeset: 362585:21378681db50
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Thu Mar 03 06:27:20 2022 +0000

description:
mips: Use device_set_private in a few drivers.

diffstat:

 sys/arch/evbmips/gdium/bonito_mainbus.c    |  6 +++---
 sys/arch/evbmips/loongson/bonito_mainbus.c |  6 +++---
 sys/arch/mips/sibyte/pci/sbbrz.c           |  4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diffs (72 lines):

diff -r 1b17770a6a45 -r 21378681db50 sys/arch/evbmips/gdium/bonito_mainbus.c
--- a/sys/arch/evbmips/gdium/bonito_mainbus.c   Thu Mar 03 06:27:03 2022 +0000
+++ b/sys/arch/evbmips/gdium/bonito_mainbus.c   Thu Mar 03 06:27:20 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bonito_mainbus.c,v 1.5 2021/08/07 16:18:51 thorpej Exp $       */
+/*     $NetBSD: bonito_mainbus.c,v 1.6 2022/03/03 06:27:20 riastradh Exp $     */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bonito_mainbus.c,v 1.5 2021/08/07 16:18:51 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bonito_mainbus.c,v 1.6 2022/03/03 06:27:20 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -70,7 +70,7 @@
        struct gdium_config * const gc = &gdium_configuration;
        pcireg_t rev;
 
-       self->dv_private = &gc->gc_bonito;
+       device_set_private(self, &gc->gc_bonito);
 
        /*
         * There is only one PCI controller on a Loongson chip.
diff -r 1b17770a6a45 -r 21378681db50 sys/arch/evbmips/loongson/bonito_mainbus.c
--- a/sys/arch/evbmips/loongson/bonito_mainbus.c        Thu Mar 03 06:27:03 2022 +0000
+++ b/sys/arch/evbmips/loongson/bonito_mainbus.c        Thu Mar 03 06:27:20 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bonito_mainbus.c,v 1.5 2021/08/07 16:18:51 thorpej Exp $       */
+/*     $NetBSD: bonito_mainbus.c,v 1.6 2022/03/03 06:27:21 riastradh Exp $     */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bonito_mainbus.c,v 1.5 2021/08/07 16:18:51 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bonito_mainbus.c,v 1.6 2022/03/03 06:27:21 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -73,7 +73,7 @@
        pcireg_t rev;
        bool compatible;
 
-       self->dv_private = __UNCONST(&sys_platform->bonito_config);
+       device_set_private(self, __UNCONST(&sys_platform->bonito_config));
 
        /*
         * Loongson 2F processors do not use a real Bonito64 chip but
diff -r 1b17770a6a45 -r 21378681db50 sys/arch/mips/sibyte/pci/sbbrz.c
--- a/sys/arch/mips/sibyte/pci/sbbrz.c  Thu Mar 03 06:27:03 2022 +0000
+++ b/sys/arch/mips/sibyte/pci/sbbrz.c  Thu Mar 03 06:27:20 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbbrz.c,v 1.8 2022/01/22 15:10:31 skrll Exp $ */
+/* $NetBSD: sbbrz.c,v 1.9 2022/03/03 06:27:21 riastradh Exp $ */
 
 /*
  * Copyright 2000, 2001
@@ -181,7 +181,7 @@
 
        /* note that we've attached the bridge; can't have two. */
        sc->sc_dev = self;
-       self->dv_private = sc;
+       device_set_private(self, sc);
 
        /*
          * set up the bridge's info; done once at console init time



Home | Main Index | Thread Index | Old Index