Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/sbus Split device_t/softc.
details: https://anonhg.NetBSD.org/src/rev/3e7dd507aabd
branches: trunk
changeset: 747509:3e7dd507aabd
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Fri Sep 18 13:48:54 2009 +0000
description:
Split device_t/softc.
diffstat:
sys/dev/sbus/be.c | 22 ++++++++++++----------
1 files changed, 12 insertions(+), 10 deletions(-)
diffs (99 lines):
diff -r 99cc2f5d8f95 -r 3e7dd507aabd sys/dev/sbus/be.c
--- a/sys/dev/sbus/be.c Fri Sep 18 13:45:20 2009 +0000
+++ b/sys/dev/sbus/be.c Fri Sep 18 13:48:54 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: be.c,v 1.68 2009/09/18 13:45:20 tsutsui Exp $ */
+/* $NetBSD: be.c,v 1.69 2009/09/18 13:48:54 tsutsui Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: be.c,v 1.68 2009/09/18 13:45:20 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: be.c,v 1.69 2009/09/18 13:48:54 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_inet.h"
@@ -114,7 +114,7 @@
#include <dev/sbus/bereg.h>
struct be_softc {
- struct device sc_dev;
+ device_t sc_dev;
bus_space_tag_t sc_bustag; /* bus & DMA tags */
bus_dma_tag_t sc_dmatag;
bus_dmamap_t sc_dmamap;
@@ -205,7 +205,7 @@
int be_intphy_service(struct be_softc *, struct mii_data *, int);
-CFATTACH_DECL(be, sizeof(struct be_softc),
+CFATTACH_DECL_NEW(be, sizeof(struct be_softc),
bematch, beattach, NULL, NULL);
int
@@ -233,6 +233,8 @@
int rseg, error;
u_int32_t v;
+ sc->sc_dev = self;
+
if (sa->sa_nreg < 3) {
printf("%s: only %d register sets\n",
device_xname(self), sa->sa_nreg);
@@ -715,7 +717,7 @@
{
struct be_softc *sc = ifp->if_softc;
- log(LOG_ERR, "%s: device timeout\n", device_xname(&sc->sc_dev));
+ log(LOG_ERR, "%s: device timeout\n", device_xname(sc->sc_dev));
++sc->sc_ethercom.ec_if.if_oerrors;
bereset(sc);
@@ -755,7 +757,7 @@
int
beqint(struct be_softc *sc, u_int32_t why)
{
- device_t self = &sc->sc_dev;
+ device_t self = sc->sc_dev;
int r = 0, rst = 0;
if (why & BE_CR_STAT_TXIRQ)
@@ -833,7 +835,7 @@
int
beeint(struct be_softc *sc, u_int32_t why)
{
- device_t self = &sc->sc_dev;
+ device_t self = sc->sc_dev;
int r = 0, rst = 0;
if (why & BE_BR_STAT_RFIFOVF) {
@@ -1384,7 +1386,7 @@
int
be_mii_reset(struct be_softc *sc, int phy)
{
- device_t self = &sc->sc_dev;
+ device_t self = sc->sc_dev;
int n;
be_mii_writereg(self, phy, MII_BMCR,
@@ -1485,7 +1487,7 @@
be_intphy_service(struct be_softc *sc, struct mii_data *mii, int cmd)
{
struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
- device_t self = &sc->sc_dev;
+ device_t self = sc->sc_dev;
int bmcr, bmsr;
int error;
@@ -1639,7 +1641,7 @@
be_intphy_status(struct be_softc *sc)
{
struct mii_data *mii = &sc->sc_mii;
- device_t self = &sc->sc_dev;
+ device_t self = sc->sc_dev;
int media_active, media_status;
int bmcr, bmsr;
Home |
Main Index |
Thread Index |
Old Index