]> git.baikalelectronics.ru Git - kernel.git/commit
[media] vivid: don't use more than 1024 bytes of stack
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 5 Jun 2015 10:24:22 +0000 (07:24 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 5 Jun 2015 10:41:54 +0000 (07:41 -0300)
commit9dd3f1028faefc0a60d13b98b54817d357402157
treef7fffb4be9d1779f0f4b51d052eadb5af43c1312
parent20cb2025c08bbc2c4c5a16e2267a2aa1b09d8556
[media] vivid: don't use more than 1024 bytes of stack

Remove the following compilation warnings:

drivers/media/platform/vivid/vivid-tpg.c: In function 'tpg_gen_text':
drivers/media/platform/vivid/vivid-tpg.c:1562:1: warning: the frame size of 1308 bytes is larger than 1024 bytes [-Wframe-larger-than=]
 }
 ^

This seems to be due to some bad optimization done by gcc.

Moving the for() loop to happen inside the macro solves the
issue.

While here, fix CodingStyle at the switch().

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
drivers/media/platform/vivid/vivid-tpg.c