Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=123f794fa7d592644881a20801638d88521d0b06
Commit:     123f794fa7d592644881a20801638d88521d0b06
Parent:     0afc2edfada50980bec999f94dcea26ebad3dda6
Author:     Jesse Barnes <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 7 11:15:20 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu Feb 7 11:35:13 2008 -0800

    i915: Fix GR register array size off-by-one bug
    
    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).
    
    Noticed-by: Jens Axboe <[EMAIL PROTECTED]>
    Signed-off-by: Jesse Barnes <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/char/drm/i915_drv.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/char/drm/i915_drv.h b/drivers/char/drm/i915_drv.h
index 37bbf67..f8308bf 100644
--- a/drivers/char/drm/i915_drv.h
+++ b/drivers/char/drm/i915_drv.h
@@ -187,7 +187,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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to