diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-03-18 05:35:25 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-03-18 05:35:25 +0000 |
commit | 262ca6996b64cd0cca9fdec0f7ce798031a8b9c6 (patch) | |
tree | ea0cb2c37bc516cff51e5c2aff4c49829ef8aee8 /sys/arch/mac68k | |
parent | 97d5e1349f72588522b52cbdaf5b24d5ab0e416c (diff) |
Add bus handle and bus tag to grfbus_softc.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/dev/grfvar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/grfvar.h b/sys/arch/mac68k/dev/grfvar.h index 410b22d44cc..63862fb3539 100644 --- a/sys/arch/mac68k/dev/grfvar.h +++ b/sys/arch/mac68k/dev/grfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: grfvar.h,v 1.5 1996/11/23 21:45:52 kstailey Exp $ */ +/* $OpenBSD: grfvar.h,v 1.6 1997/03/18 05:35:24 briggs Exp $ */ /* $NetBSD: grfvar.h,v 1.11 1996/08/04 06:03:58 scottr Exp $ */ /* @@ -52,6 +52,10 @@ struct grfbus_softc { struct device sc_dev; nubus_slot sc_slot; + bus_space_tag_t sc_tag; + bus_space_handle_t sc_regh; + bus_space_handle_t sc_fbh; + struct grfmode curr_mode; /* hardware desc(for ioctl) */ u_int16_t card_id; /* DrHW value for nubus cards */ nubus_dir board_dir; /* Nubus dir for curr board */ |