diff mbox series

misc: ocxl: afu_irq: Remove unnecessary (void*) conversions

Message ID 20231113012202.7887-1-zeming@nfschina.com (mailing list archive)
State Accepted
Commit 84ba5d3675e23e6fa824a2268c5b6a04b52dde4d
Headers show
Series misc: ocxl: afu_irq: Remove unnecessary (void*) conversions | expand

Checks

Context Check Description
snowpatch_ozlabs/github-powerpc_clang success Successfully ran 6 jobs.
snowpatch_ozlabs/github-powerpc_sparse success Successfully ran 4 jobs.
snowpatch_ozlabs/github-powerpc_kernel_qemu success Successfully ran 23 jobs.

Commit Message

Li zeming Nov. 13, 2023, 1:22 a.m. UTC
The irq pointer does not need to cast the type.

Signed-off-by: Li zeming <zeming@nfschina.com>
---
 drivers/misc/ocxl/afu_irq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Frederic Barrat Nov. 14, 2023, 12:53 p.m. UTC | #1
On 13/11/2023 02:22, Li zeming wrote:
> 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>

   Fred


>   drivers/misc/ocxl/afu_irq.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/misc/ocxl/afu_irq.c b/drivers/misc/ocxl/afu_irq.c
> index a06920b7e049a..36f7379b8e2de 100644
> --- a/drivers/misc/ocxl/afu_irq.c
> +++ b/drivers/misc/ocxl/afu_irq.c
> @@ -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);
>
Andrew Donnellan Nov. 20, 2023, 4:06 a.m. UTC | #2
On Mon, 2023-11-13 at 09:22 +0800, Li zeming wrote:
> 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>

> ---
>  drivers/misc/ocxl/afu_irq.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/misc/ocxl/afu_irq.c
> b/drivers/misc/ocxl/afu_irq.c
> index a06920b7e049a..36f7379b8e2de 100644
> --- a/drivers/misc/ocxl/afu_irq.c
> +++ b/drivers/misc/ocxl/afu_irq.c
> @@ -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);
>
Michael Ellerman Dec. 7, 2023, 12:38 p.m. UTC | #3
On Mon, 13 Nov 2023 09:22:02 +0800, Li zeming wrote:
> The irq pointer does not need to cast the type.
> 
> 

Applied to powerpc/next.

[1/1] misc: ocxl: afu_irq: Remove unnecessary (void*) conversions
      https://git.kernel.org/powerpc/c/84ba5d3675e23e6fa824a2268c5b6a04b52dde4d

cheers
diff mbox series

Patch

diff --git a/drivers/misc/ocxl/afu_irq.c b/drivers/misc/ocxl/afu_irq.c
index a06920b7e049a..36f7379b8e2de 100644
--- a/drivers/misc/ocxl/afu_irq.c
+++ b/drivers/misc/ocxl/afu_irq.c
@@ -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);