| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch converts the drivers in drivers/hwmon/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.
Cc: Donggeun Kim <[email protected]>
Cc: Simon Guinot <[email protected]>
Cc: Lars-Peter Clausen <[email protected]>
Cc: MyungJoo Ham <[email protected]>
Cc: Ben Dooks <[email protected]>
Cc: Hans de Goede <[email protected]>
Cc: J Keerthy <[email protected]>
Cc: David S. Miller <[email protected]>
Cc: Mark Brown <[email protected]>
Signed-off-by: Axel Lin <[email protected]>
Acked-by: Mark Brown <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
|
| |
|
|
|
|
| |
Scripted with coccinelle.
Signed-off-by: Thomas Gleixner <[email protected]>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In current implementation, the sysfs entries is not removed before return -ENODEV.
Creating the sysfs attribute should be the last thing done by the function,
after all the rest has been successful.
Otherwise there is a small window during which user-space can access the attribute
but the driver isn't ready to deal with the requests.
Fix it by moving sysfs_create_group to be the last thing done by the function.
Signed-off-by: Axel Lin <[email protected]>
Acked-by: Simon Guinot <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
|
|
|
This patch adds hwmon support for fans connected to GPIO lines.
Platform specific information such as GPIO pinout and speed conversion array
(rpm from/to GPIO value) are passed to the driver via platform_data.
Signed-off-by: Simon Guinot <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
|