Message ID | 1613750416-11901-4-git-send-email-abel.vesa@nxp.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Rework support for i.MX8MQ interconnect with devfreq | expand |
On 21. 2. 20. 오전 1:00, Abel Vesa wrote: > By switching to powersave governor, we allow the imx-bus to always run > at minimum rate needed by all the running masters. > > Signed-off-by: Abel Vesa <abel.vesa@nxp.com> > --- > drivers/devfreq/imx-bus.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/devfreq/imx-bus.c b/drivers/devfreq/imx-bus.c > index 4f38455ad742..1c0c92d0eb08 100644 > --- a/drivers/devfreq/imx-bus.c > +++ b/drivers/devfreq/imx-bus.c > @@ -99,7 +99,7 @@ static int imx_bus_probe(struct platform_device *pdev) > { > struct device *dev = &pdev->dev; > struct imx_bus *priv; > - const char *gov = DEVFREQ_GOV_USERSPACE; > + const char *gov = DEVFREQ_GOV_POWERSAVE; > int ret; > > priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); > Acked-by: Chanwoo Choi <cw00.choi@samsung.com> Thanks, Chanwoo Choi
diff --git a/drivers/devfreq/imx-bus.c b/drivers/devfreq/imx-bus.c index 4f38455ad742..1c0c92d0eb08 100644 --- a/drivers/devfreq/imx-bus.c +++ b/drivers/devfreq/imx-bus.c @@ -99,7 +99,7 @@ static int imx_bus_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; struct imx_bus *priv; - const char *gov = DEVFREQ_GOV_USERSPACE; + const char *gov = DEVFREQ_GOV_POWERSAVE; int ret; priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
By switching to powersave governor, we allow the imx-bus to always run at minimum rate needed by all the running masters. Signed-off-by: Abel Vesa <abel.vesa@nxp.com> --- drivers/devfreq/imx-bus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)