From: xypron.glpk@gmx.de Date: Sun, 31 Jul 2016 11:42:33 +0000 (+0200) Subject: dsa: b53: remove redundant if X-Git-Tag: v4.8-rc1~51^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=58d5aaea05e331cb2164bdfeb6927b05c19e061e;p=karo-tx-linux.git 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 Signed-off-by: David S. Miller --- 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);