mirror of https://gitee.com/openkylin/linux.git
ASoC: mxs-saif: Avoid unnecessary check
The function mxs_saif_probe() is only called with an openfirmware platform device. Therefore there is no need to check that it has an openfirmware node. Signed-off-by: Shengju Zhang <zhangshengju@cmss.chinamobile.com> Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com> Link: https://lore.kernel.org/r/20200420142509.9728-1-tangbin@cmss.chinamobile.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b1ca2f63e2
commit
e66f385354
|
@ -736,9 +736,6 @@ static int mxs_saif_probe(struct platform_device *pdev)
|
|||
int irq, ret = 0;
|
||||
struct device_node *master;
|
||||
|
||||
if (!np)
|
||||
return -EINVAL;
|
||||
|
||||
saif = devm_kzalloc(&pdev->dev, sizeof(*saif), GFP_KERNEL);
|
||||
if (!saif)
|
||||
return -ENOMEM;
|
||||
|
|
Loading…
Reference in New Issue