From: Ville Syrjälä ville.syrjala@linux.intel.com
vblank_inmodeset is a bitmask, with only two bits mind you, but better make it unsigned anyway.
Signed-off-by: Ville Syrjälä ville.syrjala@linux.intel.com --- include/drm/drmP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index b1aa6fc..09b4b33 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -1169,7 +1169,7 @@ struct drm_device { /* for wraparound handling */ int *vblank_enabled; /* so we don't call enable more than once per disable */ - int *vblank_inmodeset; /* Display driver is setting mode */ + unsigned int *vblank_inmodeset; /* Display driver is setting mode */ u32 *last_vblank_wait; /* Last vblank seqno waited per CRTC */ struct timer_list vblank_disable_timer;