aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/dsa/b53
diff options
context:
space:
mode:
authorxypron.glpk@gmx.de <xypron.glpk@gmx.de>2016-07-31 13:42:33 +0200
committerDavid S. Miller <davem@davemloft.net>2016-08-01 13:32:53 -0700
commit58d5aaea05e331cb2164bdfeb6927b05c19e061e (patch)
tree1448c8b1163b04f53383b2a8f37db7bfd81eed59 /drivers/net/dsa/b53
parentqed: do not use unitialized variable (diff)
downloadlinux-dev-58d5aaea05e331cb2164bdfeb6927b05c19e061e.tar.xz
linux-dev-58d5aaea05e331cb2164bdfeb6927b05c19e061e.zip
dsa: b53: remove redundant if
For pdata == null the code leaves with an error. There is no need to check the condition again. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/b53')
-rw-r--r--drivers/net/dsa/b53/b53_mmap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/dsa/b53/b53_mmap.c b/drivers/net/dsa/b53/b53_mmap.c
index 21f1068b0804..77ffc4312808 100644
--- a/drivers/net/dsa/b53/b53_mmap.c
+++ b/drivers/net/dsa/b53/b53_mmap.c
@@ -233,8 +233,7 @@ static int b53_mmap_probe(struct platform_device *pdev)
if (!dev)
return -ENOMEM;
- if (pdata)
- dev->pdata = pdata;
+ dev->pdata = pdata;
platform_set_drvdata(pdev, dev);