aboutsummaryrefslogtreecommitdiffstats
path: root/net/x25
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2022-05-08 22:45:00 +0100
committerPaolo Abeni <pabeni@redhat.com>2022-05-10 11:59:22 +0200
commitecd17a87eb78b5bd5ca6d1aa20c39f2bc3591337 (patch)
treec6f164f598c882f9317d76bfdbe84e6c75043cf5 /net/x25
parentMerge branch 'this-is-a-patch-series-for-ethernet-driver-of-sunplus-sp7021-soc' (diff)
downloadlinux-dev-ecd17a87eb78b5bd5ca6d1aa20c39f2bc3591337.tar.xz
linux-dev-ecd17a87eb78b5bd5ca6d1aa20c39f2bc3591337.zip
x25: remove redundant pointer dev
Pointer dev is being assigned a value that is never used, the assignment and the variable are redundant and can be removed. Also replace null check with the preferred !ptr idiom. Cleans up clang scan warning: net/x25/x25_proc.c:94:26: warning: Although the value stored to 'dev' is used in the enclosing expression, the value is never actually read from 'dev' [deadcode.DeadStores] Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20220508214500.60446-1-colin.i.king@gmail.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'net/x25')
-rw-r--r--net/x25/x25_proc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/x25/x25_proc.c b/net/x25/x25_proc.c
index 3bddcbdf2e40..0412814a2295 100644
--- a/net/x25/x25_proc.c
+++ b/net/x25/x25_proc.c
@@ -79,7 +79,6 @@ static int x25_seq_socket_show(struct seq_file *seq, void *v)
{
struct sock *s;
struct x25_sock *x25;
- struct net_device *dev;
const char *devname;
if (v == SEQ_START_TOKEN) {
@@ -91,7 +90,7 @@ static int x25_seq_socket_show(struct seq_file *seq, void *v)
s = sk_entry(v);
x25 = x25_sk(s);
- if (!x25->neighbour || (dev = x25->neighbour->dev) == NULL)
+ if (!x25->neighbour || !x25->neighbour->dev)
devname = "???";
else
devname = x25->neighbour->dev->name;