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
Jesse Barnes 2008-02-07 11:21:09 -08:00
parent 8b6c96dedd
commit 6f19473191
1 changed files with 1 additions and 1 deletions

View File

@ -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;