2022-11-15 02:38:29

by Li zeming

[permalink] [raw]
Subject: [PATCH] ax25: af_ax25: Remove unnecessary (void*) conversions

The valptr pointer is of (void *) type, so other pointers need not be
forced to assign values to it.

Signed-off-by: Li zeming <[email protected]>
---
net/ax25/af_ax25.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/ax25/af_ax25.c b/net/ax25/af_ax25.c
index 6b4c25a92377..d8da400cb4de 100644
--- a/net/ax25/af_ax25.c
+++ b/net/ax25/af_ax25.c
@@ -723,7 +723,7 @@ static int ax25_getsockopt(struct socket *sock, int level, int optname,
if (maxlen < 1)
return -EFAULT;

- valptr = (void *) &val;
+ valptr = &val;
length = min_t(unsigned int, maxlen, sizeof(int));

lock_sock(sk);
@@ -785,7 +785,7 @@ static int ax25_getsockopt(struct socket *sock, int level, int optname,
length = 1;
}

- valptr = (void *) devname;
+ valptr = devname;
break;

default:
--
2.18.2



2022-11-16 14:06:27

by patchwork-bot+netdevbpf

[permalink] [raw]
Subject: Re: [PATCH] ax25: af_ax25: Remove unnecessary (void*) conversions

Hello:

This patch was applied to netdev/net-next.git (master)
by David S. Miller <[email protected]>:

On Tue, 15 Nov 2022 10:14:24 +0800 you wrote:
> The valptr pointer is of (void *) type, so other pointers need not be
> forced to assign values to it.
>
> Signed-off-by: Li zeming <[email protected]>
> ---
> net/ax25/af_ax25.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
- ax25: af_ax25: Remove unnecessary (void*) conversions
https://git.kernel.org/netdev/net-next/c/1d7322f28fde

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html