media: venus: use NULL instead of zero for pointers
As reported by sparse: drivers/media/platform/qcom/venus/core.c:227:41: warning: Using plain integer as NULL pointer drivers/media/platform/qcom/venus/core.c:228:34: warning: Using plain integer as NULL pointer Two vars are using zero instead of NULL for pointers. Not really an issue, but using NULL makes it clearer that the init data is expecting a pointer. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
c1c1d437b1
commit
b6f139947e
|
@ -224,8 +224,8 @@ static void venus_assign_register_offsets(struct venus_core *core)
|
|||
core->cpu_cs_base = core->base + CPU_CS_BASE;
|
||||
core->cpu_ic_base = core->base + CPU_IC_BASE;
|
||||
core->wrapper_base = core->base + WRAPPER_BASE;
|
||||
core->wrapper_tz_base = 0;
|
||||
core->aon_base = 0;
|
||||
core->wrapper_tz_base = NULL;
|
||||
core->aon_base = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue