media: sta2x11: fix irq handler cast
authorArnd Bergmann <arnd@arndb.de>
Tue, 13 Feb 2024 09:54:47 +0000 (10:54 +0100)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 16 Feb 2024 10:46:33 +0000 (11:46 +0100)
commit3de49ae81c3a0f83a554ecbce4c08e019f30168e
treef68ba3a25999e795f36ba74225bf4ce7b7e406c6
parent26a3a10342748862dcc8d22222563f6ca03d6ca3
media: sta2x11: fix irq handler cast

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]
drivers/media/pci/sta2x11/sta2x11_vip.c