Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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: Andrew Donnellan <ajd@linux.ibm.com>
Acked-by: Frederic Barrat <fbarrat@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20231113012202.7887-1-zeming@nfschina.com

authored by

Li zeming and committed by
Michael Ellerman
84ba5d36 82d30723

+1 -1
+1 -1
drivers/misc/ocxl/afu_irq.c
··· 57 57 58 58 static irqreturn_t afu_irq_handler(int virq, void *data) 59 59 { 60 - struct afu_irq *irq = (struct afu_irq *) data; 60 + struct afu_irq *irq = data; 61 61 62 62 trace_ocxl_afu_irq_receive(virq); 63 63