ax25: af_ax25: Remove unnecessary (void*) conversions

Message ID 20221115021424.3367-1-zeming@nfschina.com
State New
Headers
Series ax25: af_ax25: Remove unnecessary (void*) conversions |

Commit Message

Li zeming Nov. 15, 2022, 2:14 a.m. UTC
  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(-)
  

Comments

patchwork-bot+netdevbpf@kernel.org Nov. 16, 2022, 1:40 p.m. UTC | #1
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!
  

Patch

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: