aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorGravatar Dave Airlie <airlied@redhat.com> 2011-06-08 19:58:29 +1000
committerGravatar Dave Airlie <airlied@redhat.com> 2011-06-08 20:08:46 +1000
commit428c6e3630b343d5b3034af914015d10c94bb90e (patch)
treea594844f9914d3012ad3c742f0d8ad8169bd319c /drivers/gpu
parentMerge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ker... (diff)
downloadlinux-428c6e3630b343d5b3034af914015d10c94bb90e.tar.gz
linux-428c6e3630b343d5b3034af914015d10c94bb90e.tar.bz2
linux-428c6e3630b343d5b3034af914015d10c94bb90e.zip
drm/radeon/kms: set family for use in parser.
Wierdly the kms parser never initialised the family, it wasn't really used much, but the fmt checker patch started using it and it fell over. Reported-by: Markus Trippelsdorf <markus@trippelsdorf.de> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/radeon/radeon_cs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c
index 8c1916941871..fae00c0d75aa 100644
--- a/drivers/gpu/drm/radeon/radeon_cs.c
+++ b/drivers/gpu/drm/radeon/radeon_cs.c
@@ -228,6 +228,7 @@ int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
parser.filp = filp;
parser.rdev = rdev;
parser.dev = rdev->dev;
+ parser.family = rdev->family;
r = radeon_cs_parser_init(&parser, data);
if (r) {
DRM_ERROR("Failed to initialize parser !\n");