diff options
author | mdodd <mdodd@FreeBSD.org> | 1999-10-09 03:39:47 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 1999-10-09 03:39:47 +0000 |
commit | 7b08684353b61d72f62f872ffeae28a25233f9dc (patch) | |
tree | a3b7b100cbd8abc8c4427d324915a0aff52eefdb /sys/dev/dpt/dpt.h | |
parent | 6af4cfa2bb9d7defdaa391b26c3b0636fdcb8927 (diff) | |
download | FreeBSD-src-7b08684353b61d72f62f872ffeae28a25233f9dc.zip FreeBSD-src-7b08684353b61d72f62f872ffeae28a25233f9dc.tar.gz |
- Implement a simple PIO driven function for retreiving the onboard
configuration information from a DPT card at a given port.
This is needed by the ISA bus front end (still to come) and the EISA
bus front end (which hasn't ever worked).
- Blow away dpt_eisa.h as the information it contains does not justify
an additional file.
- Convert dpt_eisa.c to use the onboard config instead of trying to
read the EISA configuration registers.
Diffstat (limited to 'sys/dev/dpt/dpt.h')
-rw-r--r-- | sys/dev/dpt/dpt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/dpt/dpt.h b/sys/dev/dpt/dpt.h index 6202f5a..4d151eb 100644 --- a/sys/dev/dpt/dpt.h +++ b/sys/dev/dpt/dpt.h @@ -1277,6 +1277,8 @@ int dpt_init(struct dpt_softc *dpt); int dpt_attach(dpt_softc_t * dpt); void dpt_intr(void *arg); +dpt_conf_t * dpt_pio_get_conf(u_int32_t); + #if 0 extern void hex_dump(u_char * data, int length, char *name, int no); |