mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
misc: ocxl: afu_irq: Remove unnecessary (void*) conversions
The irq pointer does not need to cast the type. Signed-off-by: Li zeming <zeming@nfschina.com> Acked-by: Frederic Barrat <fbarrat@linux.ibm.com> Acked-by: Andrew Donnellan <ajd@linux.ibm.com> Link: https://lore.kernel.org/r/20231113012202.7887-1-zeming@nfschina.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
62df29a542
commit
0e425d703c
@ -57,7 +57,7 @@ EXPORT_SYMBOL_GPL(ocxl_irq_set_handler);
|
||||
|
||||
static irqreturn_t afu_irq_handler(int virq, void *data)
|
||||
{
|
||||
struct afu_irq *irq = (struct afu_irq *) data;
|
||||
struct afu_irq *irq = data;
|
||||
|
||||
trace_ocxl_afu_irq_receive(virq);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user