On 07/05/2024 17:27, Ricardo Ribalda wrote:
- u32 num_properties; - u32 data[1]; + u32 one; + u32 data;
The conversion of `data[1]` to plain `data` is fine but, the conversion of `num_properties` to `one` doesn't fit the naming convention of this code which uses `num_something` extensively.
Please retain the name `num_properties` for that reason. Then add. Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@xxxxxxxxxx>