diff mbox

nouveau: treat nv04_devinit_priv.owner as signed.

Message ID 20140130172105.GA1834@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Dave Jones Jan. 30, 2014, 5:21 p.m. UTC
This is set and compared to -1 in the code, which evaluates to always false.
If we want to treat it as a signed var, we should declare it as one.

Signed-off-by: Dave Jones <davej@fedoraproject.org>
diff mbox

Patch

diff --git a/drivers/gpu/drm/nouveau/core/subdev/devinit/nv04.h b/drivers/gpu/drm/nouveau/core/subdev/devinit/nv04.h
index 23470a57510c..9d54c106dddf 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/devinit/nv04.h
+++ b/drivers/gpu/drm/nouveau/core/subdev/devinit/nv04.h
@@ -5,7 +5,7 @@ 
 
 struct nv04_devinit_priv {
 	struct nouveau_devinit base;
-	u8 owner;
+	s8 owner;
 };
 
 int  nv04_devinit_ctor(struct nouveau_object *, struct nouveau_object *,