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

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
......@@ -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 } } } }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment