diff options
author | Jamey Sharp <jamey@minilop.net> | 2009-10-28 16:45:44 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-28 18:24:29 -0700 |
commit | 83d520d86c888f2c8a4abb18b7a8858d568aa18f (patch) | |
tree | 206f212b02c93564155af9e2c449510076df4960 /hw/xfree86/common/xf86str.h | |
parent | 25979c46b467847ccb54f5c86a1be6b9c303c99a (diff) |
Add video driver flag to indicate that console access is not needed.
Existing video drivers will get the console enabled by default.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/xfree86/common/xf86str.h')
-rw-r--r-- | hw/xfree86/common/xf86str.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/xfree86/common/xf86str.h b/hw/xfree86/common/xf86str.h index b9a2e06de..7b0b758d4 100644 --- a/hw/xfree86/common/xf86str.h +++ b/hw/xfree86/common/xf86str.h @@ -299,6 +299,7 @@ typedef struct { /* GET_REQUIRED_HW_INTERFACES */ #define HW_IO 1 #define HW_MMIO 2 +#define HW_SKIP_CONSOLE 4 #define NEED_IO_ENABLED(x) (x & HW_IO) typedef CARD32 xorgHWFlags; |