Commit caa7d69d authored by Jeremy Sowden's avatar Jeremy Sowden Committed by Mauro Carvalho Chehab
Browse files

media: staging: atomisp: fix for sparse "using plain integer as NULL pointer" warnings



The "address" member of struct ia_css_host_data is a pointer-to-char,
so define default as NULL.

Signed-off-by: default avatarJeremy Sowden <jeremy@azazel.net>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 201b5673
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ union ia_css_all_memory_offsets {
};

#define IA_CSS_DEFAULT_ISP_MEM_PARAMS \
		{ { { { 0, 0 } } } }
		{ { { { NULL, 0 } } } }

#define IA_CSS_DEFAULT_ISP_CSS_PARAMS \
		{ { { { 0, 0 } } } }