mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
interconnect: imx: set src node
When set QoS for a icc path, only set dst icc node is not enough, also need to set src icc node. Signed-off-by: Peng Fan <peng.fan@nxp.com> Link: https://lore.kernel.org/r/20220703091132.1412063-6-peng.fan@oss.nxp.com Signed-off-by: Georgi Djakov <djakov@kernel.org>
This commit is contained in:
parent
bd734481e1
commit
6eeaf28c79
|
|
@ -61,6 +61,12 @@ static int imx_icc_node_set(struct icc_node *node)
|
|||
|
||||
static int imx_icc_set(struct icc_node *src, struct icc_node *dst)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = imx_icc_node_set(src);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return imx_icc_node_set(dst);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user