On 21/09/2022 16.13, Guenter Roeck wrote: > On 9/21/22 04:46, Rasmus Villemoes wrote: >> +static int isl12022_hwmon_read(struct device *dev, >> + enum hwmon_sensor_types type, >> + u32 attr, int channel, long *val) >> +{ >> + if (type == hwmon_chip && attr == hwmon_chip_update_interval) { >> + *val = 60000; >> + return 0; >> + } > > It is not the purpose of the update_interval attribute to inform the > user what the update interval of this chip happens to be. The purpose > of the attribute is to inform the chip what update interval it should use. Well, I think it's a completely natural thing to expose a fixed and known update_interval as a 0444 property, and it might even be useful to userspace to know that there's no point reading the sensor any more often than that. And I didn't come up with this by myself, there's already at least a couple of instances of a 0444 update_interval. I'll leave it to the RTC maintainers to decide, it's easy enough to remove. Rasmus