summaryrefslogtreecommitdiff
path: root/drivers/media/video/tegra/tps61050.c
diff options
context:
space:
mode:
authorShreshtha Sahu <ssahu@nvidia.com>2013-08-01 16:14:59 +0530
committerMatthew Pedro <mapedro@nvidia.com>2013-08-07 10:09:49 -0700
commitaf42f432f683430df34a2a2ba084492daaae0a5c (patch)
tree8fa47c7ce091efab1add28f0eca6d34961dfc4ee /drivers/media/video/tegra/tps61050.c
parentb358015d5dc66e1c2de23f68aeb6b53d485f1365 (diff)
media: video: tegra: fix miscdevice registeration nametegra-l4t-r17.1tegra-l4t-r17-17r1
Allocate driver name string in info struct, rather than passing a pointer to a stack allocated array when registering a miscdevice. This prevents 'cat /proc/misc' from dereferencing a dangling pointer. Drivers of following devices were updated - ad5816, as364x, dw9718, imx091, max77387, max77665-flash, ov5693, ov9772, sh532u, ssl3250a and tps61050. Change-Id: I2344e6fefabdeda962ea33bc10803881e07ab3f0 Signed-off-by: Shreshtha Sahu <ssahu@nvidia.com> Reviewed-on: http://git-master/r/256818 GVS: Gerrit_Virtual_Submit Reviewed-by: Kiran Adduri <kadduri@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com> Reviewed-by: Matthew Pedro <mapedro@nvidia.com>
Diffstat (limited to 'drivers/media/video/tegra/tps61050.c')
-rw-r--r--drivers/media/video/tegra/tps61050.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/drivers/media/video/tegra/tps61050.c b/drivers/media/video/tegra/tps61050.c
index cc442324fdc7..b13111de1e7e 100644
--- a/drivers/media/video/tegra/tps61050.c
+++ b/drivers/media/video/tegra/tps61050.c
@@ -1,7 +1,7 @@
/*
* tps61050.c - tps61050 flash/torch kernel driver
*
- * Copyright (C) 2011 NVIDIA Corporation.
+ * Copyright (C) 2011-2013 NVIDIA Corporation.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
@@ -145,6 +145,7 @@ struct tps61050_info {
struct nvc_regulator vreg_i2c;
u8 s_mode;
struct tps61050_info *s_info;
+ char devname[16];
};
static struct nvc_torch_pin_state tps61050_default_pinstate = {
@@ -904,7 +905,6 @@ static int tps61050_probe(
const struct i2c_device_id *id)
{
struct tps61050_info *info;
- char dname[16];
int err;
dev_dbg(&client->dev, "%s\n", __func__);
@@ -941,18 +941,19 @@ static int tps61050_probe(
}
if (info->pdata->dev_name != 0)
- strcpy(dname, info->pdata->dev_name);
+ strncpy(info->devname, info->pdata->dev_name,
+ sizeof(info->devname) - 1);
else
- strcpy(dname, "tps61050");
+ strncpy(info->devname, "tps61050", sizeof(info->devname) - 1);
if (info->pdata->num)
- snprintf(dname, sizeof(dname), "%s.%u",
- dname, info->pdata->num);
- info->miscdev.name = dname;
+ snprintf(info->devname, sizeof(info->devname), "%s.%u",
+ info->devname, info->pdata->num);
+ info->miscdev.name = info->devname;
info->miscdev.fops = &tps61050_fileops;
info->miscdev.minor = MISC_DYNAMIC_MINOR;
if (misc_register(&info->miscdev)) {
dev_err(&client->dev, "%s unable to register misc device %s\n",
- __func__, dname);
+ __func__, info->devname);
tps61050_del(info);
return -ENODEV;
}