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

Li zeming posted 1 patch 3 years, 4 months ago
net/ax25/af_ax25.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] ax25: af_ax25: Remove unnecessary (void*) conversions
Posted by Li zeming 3 years, 4 months ago
The valptr pointer is of (void *) type, so other pointers need not be
forced to assign values to it.

Signed-off-by: Li zeming <zeming@nfschina.com>
---
 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
Re: [PATCH] ax25: af_ax25: Remove unnecessary (void*) conversions
Posted by patchwork-bot+netdevbpf@kernel.org 3 years, 4 months ago
Hello:

This patch was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

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 <zeming@nfschina.com>
> ---
>  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