diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-02-17 19:52:27 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-02-17 19:52:27 -0500 |
commit | 9a108f0a0b7203458673ce6221e747a166d39617 (patch) | |
tree | 8ef53b0769f32b0915096842fe646b3952f49860 /src/radeon_probe.h | |
parent | 31bd6d28dd35021e0e706d4f094989deb856c26a (diff) |
ATOM: don't unblank uninitialized crtcs
If the crtc timing isn't setup, you might get stuck in a loop
in the BlankCRTC command table
fixes bug 16781
Diffstat (limited to 'src/radeon_probe.h')
-rw-r--r-- | src/radeon_probe.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/radeon_probe.h b/src/radeon_probe.h index 1b6ed7b1..447ef573 100644 --- a/src/radeon_probe.h +++ b/src/radeon_probe.h @@ -157,6 +157,7 @@ typedef struct _RADEONCrtcPrivateRec { uint32_t crtc_offset; int can_tile; Bool enabled; + Bool initialized; } RADEONCrtcPrivateRec, *RADEONCrtcPrivatePtr; typedef struct _radeon_encoder { |