Mauro Carvalho Chehab 6c33d826b5 media: isp: fix a warning about a wrong struct initializer
As sparse complains:
	drivers/media/platform/omap3isp/isp.c:303:39: warning: Using plain integer as NULL pointer

when a struct is initialized with { 0 }, actually the first
element of the struct is initialized with zeros, initializing the
other elements recursively. That can even generate gcc warnings
on nested structs.

So, instead, use the gcc-specific syntax for that (with is used
broadly inside the Kernel), initializing it with {};

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2018-08-08 10:57:14 -04:00
..
2018-07-27 06:39:57 -04:00
2018-08-02 19:12:34 -04:00
2018-08-02 06:08:12 -04:00
2018-08-02 06:08:12 -04:00
2018-06-15 18:10:01 -03:00
2018-06-17 05:00:24 +09:00
2018-07-04 08:47:56 -04:00