]> www.infradead.org Git - users/dwmw2/linux.git/commit
media: sta2x11: fix irq handler cast
authorArnd Bergmann <arnd@arndb.de>
Tue, 13 Feb 2024 09:54:47 +0000 (10:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 13 Apr 2024 11:01:45 +0000 (13:01 +0200)
commit09de9c3614ad10b2ce860921fffa0cea3eb17f99
treeb73b6876020b8bb970705deded7262decb16592a
parent46e8711231b21053662cf6e1338736a97313c82c
media: sta2x11: fix irq handler cast

[ Upstream commit 3de49ae81c3a0f83a554ecbce4c08e019f30168e ]

clang-16 warns about casting incompatible function pointers:

drivers/media/pci/sta2x11/sta2x11_vip.c:1057:6: error: cast from 'irqreturn_t (*)(int, struct sta2x11_vip *)' (aka 'enum irqreturn (*)(int, struct sta2x11_vip *)') to 'irq_handler_t' (aka 'enum irqreturn (*)(int, void *)') converts to incompatible function type [-Werror,-Wcast-function-type-strict]

Change the prototype of the irq handler to the regular version with a
local variable to adjust the argument type.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil: update argument documentation]
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/media/pci/sta2x11/sta2x11_vip.c