Commit 97fff7c8 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

dpaa2-eth: fix error return code in setup_dpni()



Fix to return negative error code -ENOMEM from the error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c4db9934
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2702,8 +2702,10 @@ static int setup_dpni(struct fsl_mc_device *ls_dev)

	priv->cls_rules = devm_kzalloc(dev, sizeof(struct dpaa2_eth_cls_rule) *
				       dpaa2_eth_fs_count(priv), GFP_KERNEL);
	if (!priv->cls_rules)
	if (!priv->cls_rules) {
		err = -ENOMEM;
		goto close;
	}

	return 0;