[media] tc358743: Use local array with fixed size in i2c write
authorMats Randgaard <matrandg@cisco.com>
Thu, 10 Dec 2015 13:38:07 +0000 (11:38 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 1 Feb 2016 10:02:53 +0000 (08:02 -0200)
commitfcae73fac1b45053766c92f08fb3afee6d30dbbc
treefcb713b767b7f0cf8987a0e07b75f30198f10582
parent8e20b80344148dd8b7ec23d546e931d54810a1b7
[media] tc358743: Use local array with fixed size in i2c write

i2c_wr() is called from ops and the interrupt service routine, while
state->wr_data is shared and unprotected, and could be overwritten.

This shared buffer is therefore replaced with a local array with fixed
size. The array has the size of one EDID block (128 bytes) + 2 bytes
i2c address, and the EDID is written block by block (up to 8 blocks).

Signed-off-by: Mats Randgaard <matrandg@cisco.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/i2c/tc358743.c