mips: Use device_set_private in a few drivers.
This commit is contained in:
parent
42362de5c5
commit
7fcda4e991
|
@ -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 @@ bonito_mainbus_attach(device_t parent, device_t self, void *aux)
|
|||
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.
|
||||
|
|
|
@ -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 @@ bonito_mainbus_attach(device_t parent, device_t self, void *aux)
|
|||
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
|
||||
|
|
|
@ -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 @@ sbbrz_attach(device_t parent, device_t self, void *aux)
|
|||
|
||||
/* 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
|
||||
|
|
Loading…
Reference in New Issue