From: Chris Wilson Date: Sun, 6 Jun 2010 14:40:22 +0000 (+0100) Subject: drm/i915: Sparse warns about the incorrect sign for storing bit17 X-Git-Tag: v2.6.36-rc1~540^2~11^2~36 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=d312ec251769dc2ad6c9bd9856a756c6097ab63c;p=~andy%2Flinux drm/i915: Sparse warns about the incorrect sign for storing bit17 Signed-off-by: Chris Wilson Signed-off-by: Eric Anholt --- diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index e40dcf2af43..21a4af99919 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -739,7 +739,7 @@ struct drm_i915_gem_object { uint32_t stride; /** Record of address bit 17 of each page at last unbind. */ - long *bit_17; + unsigned long *bit_17; /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */ uint32_t agp_type;