sensor, fan: resolve stable hwmon device paths at startup#8
Merged
Conversation
hwmon numbers under /sys/class/hwmon/ are unstable and may change across reboots. Add hwmon_resolve_path() which, when given a path whose last component is exactly "hwmon" (e.g. /sys/devices/platform/asus-ec-sensors/hwmon), scans that directory for the first hwmonN child and returns its full path. Paths that already contain a concrete hwmon number are returned unchanged, so existing configs keep working without modification. Both sensor_create() and fan_create() now call hwmon_resolve_path() so users can specify stable device-tree paths in fand.conf. Closes #6 Co-authored-by: Michał Kopeć <mkopec@users.noreply.github.com>
claude Bot
pushed a commit
that referenced
this pull request
Mar 20, 2026
Bring sensor.c, fan.c, hwmon.c, hwmon.h, fand.conf, and Makefile in line with master (PR #8) while retaining the test target added in this branch. Makefile conflict resolved: hwmon.c added to both main and test compilation targets. Co-authored-by: Michał Kopeć <mkopec@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
hwmon numbers under /sys/class/hwmon/ are unstable and may change across reboots. This PR adds
hwmon_resolve_path()which, when given a path whose last component is exactly "hwmon" (e.g./sys/devices/platform/asus-ec-sensors/hwmon), scans that directory for the first hwmonN child and returns its full path. Paths with a concrete number are unchanged for backward compatibility.Closes #6
Generated with Claude Code