]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
[media] soc-camera: increase the length of clk_name on soc_of_bind()
authorJosh Wu <josh.wu@atmel.com>
Tue, 4 Aug 2015 10:51:09 +0000 (07:51 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 25 Sep 2015 20:26:27 +0000 (17:26 -0300)
Since in soc_of_bind() it may use the of node's full name as the clk_name,
and this full name may be longer than 32 characters, take at91 i2c sensor
as an example, length is 34 bytes:
   /ahb/apb/i2c@f8028000/camera@0x30

So this patch increase the clk_name[] array size to 64. It seems big
enough so far.

Signed-off-by: Josh Wu <josh.wu@atmel.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/soc_camera/soc_camera.c

index 9087fed586fba29281d2a24c7500096a77339bf9..43f9d67e9d7f7e2cbadca5419a0787878d7ce451 100644 (file)
@@ -1631,7 +1631,7 @@ static int soc_of_bind(struct soc_camera_host *ici,
        struct soc_camera_async_client *sasc;
        struct soc_of_info *info;
        struct i2c_client *client;
-       char clk_name[V4L2_SUBDEV_NAME_SIZE];
+       char clk_name[V4L2_SUBDEV_NAME_SIZE + 32];
        int ret;
 
        /* allocate a new subdev and add match info to it */