summaryrefslogtreecommitdiffstats
path: root/drivers/media/usb
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-02-19 18:01:56 +0100
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-03-19 18:58:30 +0100
commit03aa4f191a36f33fce015387f84efa0eee94408e (patch)
treedbbe51a040a7acd4b69cd22e4abef787e344cd2a /drivers/media/usb
parentmedia: atmel-isc: Add support for BT656 with CRC decoding (diff)
downloadlinux-03aa4f191a36f33fce015387f84efa0eee94408e.tar.xz
linux-03aa4f191a36f33fce015387f84efa0eee94408e.zip
media: saa7146: avoid high stack usage with clang
Two saa7146/hexium files contain a construct that causes a warning when built with clang: drivers/media/pci/saa7146/hexium_orion.c:210:12: error: stack frame size of 2272 bytes in function 'hexium_probe' [-Werror,-Wframe-larger-than=] static int hexium_probe(struct saa7146_dev *dev) ^ drivers/media/pci/saa7146/hexium_gemini.c:257:12: error: stack frame size of 2304 bytes in function 'hexium_attach' [-Werror,-Wframe-larger-than=] static int hexium_attach(struct saa7146_dev *dev, struct saa7146_pci_extension_data *info) ^ This one happens regardless of KASAN, and the problem is that a constructor to initialize a dynamically allocated structure leads to a copy of that structure on the stack, whereas gcc initializes it in place. Link: https://bugs.llvm.org/show_bug.cgi?id=40776 Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> [hverkuil-cisco@xs4all.nl: fix checkpatch warnings] Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/usb')
0 files changed, 0 insertions, 0 deletions