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

From: Rafael J. Wysocki (Intel)

Date: Fri Sep 04 2026 - 12:23:09 EST


On Thu, Sep 3, 2026 at 7:22 PM Randy Dunlap <rdunlap@xxxxxxxxxxxxx> wrote:
>
>
>
> On 9/3/26 9:07 AM, Manuel Ebner wrote:
> > Remove needless '(' from equation.
> >
> > Signed-off-by: Manuel Ebner <manuelebnerli@xxxxxxxxxxx>
>
> Reviewed-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>

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)
> >
> > ...
>
> --