diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-05 20:30:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-05 20:30:19 +0000 |
commit | c80c1404c65a8426c4d99afc9112497f0b452906 (patch) | |
tree | 06dd48af7965e1a733dfef3ff0d695ade5015f09 | |
parent | e38173f0bc09f61be5eb08367a9897ec4f9a787a (diff) |
More dead constants.
-rw-r--r-- | sys/arch/mac68k/dev/grfvar.h | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/sys/arch/mac68k/dev/grfvar.h b/sys/arch/mac68k/dev/grfvar.h index a89a57c453d..0b6f2309891 100644 --- a/sys/arch/mac68k/dev/grfvar.h +++ b/sys/arch/mac68k/dev/grfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: grfvar.h,v 1.17 2006/01/04 20:39:05 miod Exp $ */ +/* $OpenBSD: grfvar.h,v 1.18 2006/01/05 20:30:18 miod Exp $ */ /* $NetBSD: grfvar.h,v 1.11 1996/08/04 06:03:58 scottr Exp $ */ /* $NetBSD: grfioctl.h,v 1.5 1995/07/02 05:26:45 briggs Exp $ */ @@ -52,7 +52,6 @@ struct grfmode { u_int16_t vres; /* Vertical resolution (dpi) */ u_int16_t ptype; /* 0 = indexed, 0x10 = direct */ u_int16_t psize; /* Screen depth */ - char pad[32]; /* Space for expansion */ }; #define CARD_NAME_LEN 64 @@ -88,24 +87,6 @@ struct grfbus_attach_args { bus_addr_t ga_phys; }; -/* flags */ -#define GF_ALIVE 0x01 -#define GF_OPEN 0x02 -#define GF_EXCLUDE 0x04 -#define GF_WANTED 0x08 -#define GF_BSDOPEN 0x10 -#define GF_HPUXOPEN 0x20 - -/* requests to mode routine */ -#define GM_GRFON 1 -#define GM_GRFOFF 2 -#define GM_CURRMODE 3 -#define GM_LISTMODES 4 -#define GM_NEWMODE 5 - -/* minor device interpretation */ -#define GRFUNIT(d) (minor(d)) - /* * Nubus image data structure. This is the equivalent of a PixMap in * MacOS programming parlance. One of these structures exists for each |