mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
hte: tegra: Fix missing error code in tegra_hte_test_probe()
[ Upstream commitb7c3ca3553
] The value of 'ret' is zero when of_hte_req_count() fails to get number of entitties to timestamp. And returning success(zero) on this failure path is incorrect. Fixes:9a75a7cd03
("hte: Add Tegra HTE test driver") Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> Reviewed-by: Dipen Patel <dipenp@nvidia.com> Signed-off-by: Dipen Patel <dipenp@nvidia.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a671a41d60
commit
4d37df40b1
@ -154,8 +154,10 @@ static int tegra_hte_test_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
cnt = of_hte_req_count(hte.pdev);
|
||||
if (cnt < 0)
|
||||
if (cnt < 0) {
|
||||
ret = cnt;
|
||||
goto free_irq;
|
||||
}
|
||||
|
||||
dev_info(&pdev->dev, "Total requested lines:%d\n", cnt);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user