Re: [PATCH v4 01/11] dts: add the aenum dependency

2024-09-27 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

[PATCH v4 01/11] dts: add the aenum dependency

2024-09-23 Thread Juraj Linkeš
Regular Python enumerations create only one instance for members with the same value, such as: class MyEnum(Enum): foo = 1 bar = 1 MyEnum.foo and MyEnum.bar are aliases that return the same instance. DTS needs to return different instances in the above scenario so that we can map capabili