Re: [PATCH 1/3] hwmon: (coretemp) Introduce enum for attr index

From: Ashok Raj
Date: Tue Dec 05 2023 - 14:20:44 EST


On Fri, Dec 01, 2023 at 09:29:24AM -0800, Zhang, Rui wrote:

[snip]

> >
> > How about
> >
> > ATTR_LABEL,
> > ATTR_CRIT_ALARM,
> > ATTR_TEMP,
> > ATTR_TJMAX,
> > MAX_CORE_ATTRS,         /* One more than TJMAX */
> > ATTR_TTARGET = MAX_CORE_ATTRS,
> > TOTAL_ATTRS
> >
> > Each enum can be assigned any value, but this way they are just
> > increasing
> > order.
>
> ATTR_TTARGET is the next attribute after ATTR_TJMAX so it should be
> right after ATTR_TJMAX.
> MAX_CORE_ATTRS is the number of basic attributes so it should be
> ATTR_TJMAX + 1.
> TOTAL_ATTRS is the number of possible attributes so it should be
> ATTR_TTARGET + 1
>
> ATTR_LABEL, // 0
> ATTR_CRIT_ALARM, // 1
> ATTR_TEMP, // 2
> ATTR_TJMAX, // 3
> ATTR_TTARGET, // 4
> MAX_CORE_ATTRS = ATTR_TJMAX + 1, // 4
> TOTAL_ATTRS = ATTR_TTARGET + 1, // 5
>
> How about this one?

Sorry for the delay... yes, this sounds fine.