diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-04-09 22:05:01 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-04-09 22:05:01 +0000 |
commit | cf6575690e256d6fc8e9fc4f2cee73c43cdd864d (patch) | |
tree | 363562f5587201ab45ab8bdb4b03b8184e142486 /sys/dev/pci/if_txpreg.h | |
parent | 3b449adf7cf840a9352dba36ba364bdcd5159437 (diff) |
- full media support (and remove all of the mii stuff... the firmware wants
to maintain write control over the phy... fine... but we query it to get
current status).
- fix several bugs in cmd/rsp handling: match responses to commands via id/seq,
and add a routine to fixup the queue if it gets mangled).
Diffstat (limited to 'sys/dev/pci/if_txpreg.h')
-rw-r--r-- | sys/dev/pci/if_txpreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_txpreg.h b/sys/dev/pci/if_txpreg.h index 23d072d9a9a..261b0c712c5 100644 --- a/sys/dev/pci/if_txpreg.h +++ b/sys/dev/pci/if_txpreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_txpreg.h,v 1.9 2001/04/09 05:36:17 jason Exp $ */ +/* $OpenBSD: if_txpreg.h,v 1.10 2001/04/09 22:05:00 jason Exp $ */ /* * Copyright (c) 2001 Aaron Campbell <aaron@monkey.org>. @@ -457,8 +457,8 @@ struct txp_softc { void * sc_ih; struct timeout sc_tick_tmo; struct ifmedia sc_ifmedia; - mii_data_t sc_mii; /* mii bus */ u_int16_t sc_xcvr; + u_int16_t sc_seq; struct txp_dma_alloc sc_boot_dma, sc_host_dma, sc_zero_dma; struct txp_dma_alloc sc_rxhiring_dma, sc_rxloring_dma; struct txp_dma_alloc sc_txhiring_dma, sc_txloring_dma; |