interconnect: msm8998: Ignore return value of icc_provider_del() in .remove()
A similar fix for sm8450 was done in fa80a2994d, fixes compilation on
v6.1-rc1.
This commit is contained in:
parent
b76ed0ff8e
commit
90a10c9650
1 changed files with 3 additions and 1 deletions
|
|
@ -952,7 +952,9 @@ static int qnoc_remove(struct platform_device *pdev)
|
|||
|
||||
icc_nodes_remove(&qp->provider);
|
||||
clk_bulk_disable_unprepare(qp->num_clks, qp->bus_clks);
|
||||
return icc_provider_del(&qp->provider);
|
||||
icc_provider_del(&qp->provider);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id msm8998_noc_of_match[] = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue