From: Frediano Ziglio Date: Wed, 3 Jun 2015 11:09:11 +0000 (+0100) Subject: drm/qxl: Fix print statement not using uninitialized variable X-Git-Tag: v4.2-rc1~13^2~34 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=55cc3df08a2c6a9c9c20b34ba26de0512a750b5e;p=linux-2.6-block.git drm/qxl: Fix print statement not using uninitialized variable reloc_info[i] is not still initialized in the print statement. Signed-off-by: Frediano Ziglio Reviewed-by: Dave Airlie Signed-off-by: Dave Airlie --- diff --git a/drivers/gpu/drm/qxl/qxl_ioctl.c b/drivers/gpu/drm/qxl/qxl_ioctl.c index 7354a4cda59d..9bf1368bc92c 100644 --- a/drivers/gpu/drm/qxl/qxl_ioctl.c +++ b/drivers/gpu/drm/qxl/qxl_ioctl.c @@ -212,7 +212,7 @@ static int qxl_process_single_command(struct qxl_device *qdev, /* add the bos to the list of bos to validate - need to validate first then process relocs? */ if (reloc.reloc_type != QXL_RELOC_TYPE_BO && reloc.reloc_type != QXL_RELOC_TYPE_SURF) { - DRM_DEBUG("unknown reloc type %d\n", reloc_info[i].type); + DRM_DEBUG("unknown reloc type %d\n", reloc.reloc_type); ret = -EINVAL; goto out_free_bos;