1
0
Fork 0

mfd: t7l66xb: Remove unnecessary pdata check

o Making pdata NULL check to (!pdata) as coding standard
	and all other checks in file.
 o Removing redundant check of pdata, because we already
	check for pdata, and also derefernced before this check.

Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
hifive-unleashed-5.1
Maninder Singh 2015-07-02 08:52:58 +05:30 committed by Lee Jones
parent 088d862c53
commit 78b7d84c8f
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ static int t7l66xb_probe(struct platform_device *dev)
struct resource *iomem, *rscr;
int ret;
if (pdata == NULL)
if (!pdata)
return -EINVAL;
iomem = platform_get_resource(dev, IORESOURCE_MEM, 0);
@ -371,7 +371,7 @@ static int t7l66xb_probe(struct platform_device *dev)
clk_prepare_enable(t7l66xb->clk48m);
if (pdata && pdata->enable)
if (pdata->enable)
pdata->enable(dev);
/* Mask all interrupts */