[PATCH] docs: thermal: cpu-idle-cooling.rst: Fix bracket

Manuel Ebner posted 1 patch 3 weeks, 1 day ago
Documentation/driver-api/thermal/cpu-idle-cooling.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] docs: thermal: cpu-idle-cooling.rst: Fix bracket
Posted by Manuel Ebner 3 weeks, 1 day ago
Remove needless '(' from equation.

Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>
---
 Documentation/driver-api/thermal/cpu-idle-cooling.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/driver-api/thermal/cpu-idle-cooling.rst b/Documentation/driver-api/thermal/cpu-idle-cooling.rst
index c2a7ca676..b9d4c91a7 100644
--- a/Documentation/driver-api/thermal/cpu-idle-cooling.rst
+++ b/Documentation/driver-api/thermal/cpu-idle-cooling.rst
@@ -161,7 +161,7 @@ tree. So with the idle injection mechanism, we want an average power
 specific OPP and idle another amount of time. That could be put in a
 equation::
 
- P(opp)target = ((Trunning x (P(opp)running) + (Tidle x P(opp)idle)) /
+ P(opp)target = (Trunning x (P(opp)running) + (Tidle x P(opp)idle)) /
 			(Trunning + Tidle)
 
   ...
-- 
2.54.0
Re: [PATCH] docs: thermal: cpu-idle-cooling.rst: Fix bracket
Posted by Randy Dunlap 3 weeks, 1 day ago

On 9/3/26 9:07 AM, Manuel Ebner wrote:
> Remove needless '(' from equation.
> 
> Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.

> ---
>  Documentation/driver-api/thermal/cpu-idle-cooling.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/driver-api/thermal/cpu-idle-cooling.rst b/Documentation/driver-api/thermal/cpu-idle-cooling.rst
> index c2a7ca676..b9d4c91a7 100644
> --- a/Documentation/driver-api/thermal/cpu-idle-cooling.rst
> +++ b/Documentation/driver-api/thermal/cpu-idle-cooling.rst
> @@ -161,7 +161,7 @@ tree. So with the idle injection mechanism, we want an average power
>  specific OPP and idle another amount of time. That could be put in a
>  equation::
>  
> - P(opp)target = ((Trunning x (P(opp)running) + (Tidle x P(opp)idle)) /
> + P(opp)target = (Trunning x (P(opp)running) + (Tidle x P(opp)idle)) /
>  			(Trunning + Tidle)
>  
>    ...

-- 
~Randy
Re: [PATCH] docs: thermal: cpu-idle-cooling.rst: Fix bracket
Posted by Rafael J. Wysocki (Intel) 3 weeks ago
On Thu, Sep 3, 2026 at 7:22 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>
>
>
> On 9/3/26 9:07 AM, Manuel Ebner wrote:
> > Remove needless '(' from equation.
> >
> > Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>
>
> Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

Applied as 7.4 material, thanks!

> > ---
> >  Documentation/driver-api/thermal/cpu-idle-cooling.rst | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Documentation/driver-api/thermal/cpu-idle-cooling.rst b/Documentation/driver-api/thermal/cpu-idle-cooling.rst
> > index c2a7ca676..b9d4c91a7 100644
> > --- a/Documentation/driver-api/thermal/cpu-idle-cooling.rst
> > +++ b/Documentation/driver-api/thermal/cpu-idle-cooling.rst
> > @@ -161,7 +161,7 @@ tree. So with the idle injection mechanism, we want an average power
> >  specific OPP and idle another amount of time. That could be put in a
> >  equation::
> >
> > - P(opp)target = ((Trunning x (P(opp)running) + (Tidle x P(opp)idle)) /
> > + P(opp)target = (Trunning x (P(opp)running) + (Tidle x P(opp)idle)) /
> >                       (Trunning + Tidle)
> >
> >    ...
>
> --