mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 09:09:55 -04:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user