diff options
author | msmith <msmith@FreeBSD.org> | 2000-03-11 05:20:56 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2000-03-11 05:20:56 +0000 |
commit | fc305a1974a26ba6fe9640efecfc99cbbb8d21a1 (patch) | |
tree | 704413176a666ad12adfa1a2f2cf054e379a6901 /sys/pci/if_dcreg.h | |
parent | 2bf7fb4443657c73135a45e4c526e1315a86d1db (diff) | |
download | FreeBSD-src-fc305a1974a26ba6fe9640efecfc99cbbb8d21a1.zip FreeBSD-src-fc305a1974a26ba6fe9640efecfc99cbbb8d21a1.tar.gz |
Teach the 'dc' driver how to pick up settings left over by the
SRM on alpha systems. This is an expedient if not entirely
elegant solution to the problem.
Submitted by: gallatin
Approved by: jkh
Diffstat (limited to 'sys/pci/if_dcreg.h')
-rw-r--r-- | sys/pci/if_dcreg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/pci/if_dcreg.h b/sys/pci/if_dcreg.h index e358c4d..9620e10 100644 --- a/sys/pci/if_dcreg.h +++ b/sys/pci/if_dcreg.h @@ -655,6 +655,9 @@ struct dc_softc { struct dc_list_data *dc_ldata; struct dc_chain_data dc_cdata; struct callout_handle dc_stat_ch; +#ifdef __alpha__ + int dc_srm_media; +#endif }; #define DC_TX_POLL 0x00000001 |