nouveau: fix function cast warning
[ Upstream commit 185fdb4697cc9684a02f2fab0530ecdd0c2f15d4 ]
Calling a function through an incompatible pointer type causes breaks
kcfi, so clang warns about the assignment:
drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.c:73:10: error: cast from 'void (*)(const void *)' to 'void (*)(void *)' converts to incompatible function type [-Werror,-Wcast-function-type-strict]
73 | .fini = (void(*)(void *))kfree,
Avoid this with a trivial wrapper.
Fixes: c39f472e9f
("drm/nouveau: remove symlinks, move core/ to nvkm/ (no code changes)")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Danilo Krummrich <dakr@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240404160234.2923554-1-arnd@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
7dc2f7b2c3
commit
e252fc8279
@@ -66,11 +66,16 @@ of_init(struct nvkm_bios *bios, const char *name)
|
|||||||
return ERR_PTR(-EINVAL);
|
return ERR_PTR(-EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void of_fini(void *p)
|
||||||
|
{
|
||||||
|
kfree(p);
|
||||||
|
}
|
||||||
|
|
||||||
const struct nvbios_source
|
const struct nvbios_source
|
||||||
nvbios_of = {
|
nvbios_of = {
|
||||||
.name = "OpenFirmware",
|
.name = "OpenFirmware",
|
||||||
.init = of_init,
|
.init = of_init,
|
||||||
.fini = (void(*)(void *))kfree,
|
.fini = of_fini,
|
||||||
.read = of_read,
|
.read = of_read,
|
||||||
.size = of_size,
|
.size = of_size,
|
||||||
.rw = false,
|
.rw = false,
|
||||||
|
Reference in New Issue
Block a user