Fix saveGR array size
Make sure we have enough room for all the GR registers or we'll end up clobbering the AR index register (which should actually be harmless unless the BIOS is making an assumption about it).main
parent
8b6c96dedd
commit
6f19473191
|
@ -224,7 +224,7 @@ typedef struct drm_i915_private {
|
|||
u32 saveSWF2[3];
|
||||
u8 saveMSR;
|
||||
u8 saveSR[8];
|
||||
u8 saveGR[24];
|
||||
u8 saveGR[25];
|
||||
u8 saveAR_INDEX;
|
||||
u8 saveAR[20];
|
||||
u8 saveDACMASK;
|
||||
|
|
Loading…
Reference in New Issue