1. 05 Feb, 2024 1 commit
  2. 04 Dec, 2023 1 commit
  3. 24 Nov, 2023 3 commits
  4. 23 Nov, 2023 6 commits
  5. 22 Nov, 2023 1 commit
  6. 09 Nov, 2023 4 commits
  7. 18 Oct, 2023 1 commit
  8. 17 Oct, 2023 2 commits
  9. 21 Sep, 2023 2 commits
  10. 20 Sep, 2023 1 commit
  11. 19 Sep, 2023 1 commit
  12. 31 Aug, 2023 1 commit
  13. 29 Aug, 2023 1 commit
  14. 24 Jul, 2023 1 commit
  15. 20 Jul, 2023 1 commit
  16. 09 Feb, 2023 3 commits
  17. 07 Feb, 2023 1 commit
  18. 06 Feb, 2023 6 commits
  19. 03 Feb, 2023 1 commit
  20. 02 Feb, 2023 2 commits
    • Vaibhav Gupta's avatar
      software: kernel: Use HWMON API to expose Temperature · 3682c317
      Vaibhav Gupta authored
      Information from sensors like temperature, which are useful for
      user-space, can be exposed via sysfs.
      
      Earlier, the driver developers had to take care of defining the attributes,
      initiating them, and perform other related jobs.
      
      But since a long time, the HWMON framework in Linux has developed
      significantly. And, utilizing it will reduce lot of maintainence work
      for the developers.
      
      All the sysfs related part is handled by the framework which also allows
      user-space tools, like lm-sensors, to provide the data to the user in a
      simplified manner.
      Signed-off-by: 's avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
      3682c317
    • Vaibhav Gupta's avatar
      software: kernel: second parameter of ft_temperature_get() is not required · 0e1a7ecd
      Vaibhav Gupta authored
      The second paramter of ft_temperature_get() is already a member of the
      of the first one. Thus, the value can be stored in it within the
      function itself. Aand, it doesn't changes its return behaviour.
      
      Also, this makes the function symmetric, in terms of declaration, to
      those of fmc-adc and fine-delay.
      Signed-off-by: 's avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
      0e1a7ecd