hwmon.h 630 B

1234567891011121314151617181920212223
  1. /*
  2. hwmon.h - part of lm_sensors, Linux kernel modules for hardware monitoring
  3. This file declares helper functions for the sysfs class "hwmon",
  4. for use by sensors drivers.
  5. Copyright (C) 2005 Mark M. Hoffman <mhoffman@lightlink.com>
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; version 2 of the License.
  9. */
  10. #ifndef _HWMON_H_
  11. #define _HWMON_H_
  12. struct device;
  13. struct device *hwmon_device_register(struct device *dev);
  14. void hwmon_device_unregister(struct device *dev);
  15. #endif