[PATCH 2/2] drm: Resolve shadow warning for s32
Jeff Kirsher
jeffrey.t.kirsher at intel.com
Fri Aug 29 08:21:26 PDT 2014
From: Mark Rustad <mark.d.rustad at intel.com>
Resolve a shadow warning produced in a W=2 build by changing
the name of a local variable from s32 to ds32. Since s32 clashes
with the well-known typedef, any macro expansion that could
someday be used that might attempt to use an s32 type would fail
to compile. It is best to eliminate the hazard.
Signed-off-by: Mark Rustad <mark.d.rustad at intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher at intel.com>
---
drivers/gpu/drm/drm_ioc32.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/drm_ioc32.c b/drivers/gpu/drm/drm_ioc32.c
index 2f4c4343..777ffd8 100644
--- a/drivers/gpu/drm/drm_ioc32.c
+++ b/drivers/gpu/drm/drm_ioc32.c
@@ -339,7 +339,7 @@ typedef struct drm_stats32 {
static int compat_drm_getstats(struct file *file, unsigned int cmd,
unsigned long arg)
{
- drm_stats32_t s32;
+ drm_stats32_t ds32;
drm_stats32_t __user *argp = (void __user *)arg;
struct drm_stats __user *stats;
int i, err;
@@ -352,14 +352,14 @@ static int compat_drm_getstats(struct file *file, unsigned int cmd,
if (err)
return err;
- if (__get_user(s32.count, &stats->count))
+ if (__get_user(ds32.count, &stats->count))
return -EFAULT;
for (i = 0; i < 15; ++i)
- if (__get_user(s32.data[i].value, &stats->data[i].value)
- || __get_user(s32.data[i].type, &stats->data[i].type))
+ if (__get_user(ds32.data[i].value, &stats->data[i].value)
+ || __get_user(ds32.data[i].type, &stats->data[i].type))
return -EFAULT;
- if (copy_to_user(argp, &s32, sizeof(s32)))
+ if (copy_to_user(argp, &ds32, sizeof(ds32)))
return -EFAULT;
return 0;
}
--
1.9.3
More information about the dri-devel
mailing list