1. 28 6月, 2013 2 次提交
  2. 04 5月, 2013 1 次提交
  3. 21 4月, 2013 1 次提交
  4. 17 4月, 2013 1 次提交
  5. 08 4月, 2013 6 次提交
  6. 23 3月, 2013 1 次提交
    • J
      hwmon: Move the IIO client driver for hwmon out of staging · 51b53dc9
      Jonathan Cameron 提交于
      This driver uses channel maps, defined either through device tree
      or platform data, to create a hwmon driver which acts as a client
      for the underlying IIO device channels.  Thus a general purpose
      IIO adc driver can be used to provide hardware monitoring using a subset
      of its channels.
      Signed-off-by: NJonathan Cameron <jic23@kernel.org>
      Acked-by: NGuenter Roeck <linux@roeck-us.net>
      
      --
       The only non move changes here concern the description and changes to the
       dependencies to IIO explicit and hwmon implicit.
      
       I'm proposing moving this into hwmon on the basis of placing drivers
       based on what they provide rather than what their underlying hardware
       is.
      
       drivers/hwmon/Kconfig           |   9 ++
       drivers/hwmon/Makefile          |   1 +
       drivers/hwmon/iio_hwmon.c       | 196 ++++++++++++++++++++++++++++++++++++++++
       drivers/staging/iio/Kconfig     |   8 --
       drivers/staging/iio/Makefile    |   2 -
       drivers/staging/iio/iio_hwmon.c | 196 ----------------------------------------
       6 files changed, 206 insertions(+), 206 deletions(-)
      51b53dc9
  7. 20 2月, 2013 1 次提交
  8. 07 2月, 2013 4 次提交
  9. 06 12月, 2012 3 次提交
  10. 17 10月, 2012 1 次提交
  11. 24 9月, 2012 9 次提交
  12. 22 7月, 2012 2 次提交
  13. 30 5月, 2012 1 次提交
  14. 22 5月, 2012 1 次提交
  15. 16 4月, 2012 1 次提交
  16. 02 4月, 2012 3 次提交
    • A
      hwmon: (k10temp) Add support for AMD Trinity CPUs · fbc729a4
      Andre Przywara 提交于
      The on-chip northbridge's temperature sensor of the upcoming
      AMD Trinity CPUs works the same as for the previous CPUs.
      Since it has a different PCI-ID, we just add the new one to the list
      supported by k10temp.
      This allows to use the k10temp driver on those CPUs.
      Signed-off-by: NAndre Przywara <andre.przywara@amd.com>
      Cc: stable@vger.kernel.org # 3.0+
      Signed-off-by: NGuenter Roeck <guenter.roeck@ericsson.com>
      fbc729a4
    • G
      hwmon: (sht15) Fix Kconfig dependencies · be45d422
      Guenter Roeck 提交于
      sht15 depends on GPIOLIB, not on GENERIC_GPIO.
      
      This fixes the following build error, seen if GPIOLIB is not defined:
      
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_direction_input': => 293:2
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_direction_output': => 216:2
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_free': => 1000:2
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_get_value': => 296:2
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_request': => 946:2
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_set_value': => 218:2
      src/drivers/hwmon/sht15.c: error: implicit declaration of function 'gpio_to_irq': => 514:2
      Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
      Acked-by: NJean Delvare <khali@linux-fr.org>
      be45d422
    • G
      hwmon: (gpio-fan) Fix Kconfig dependencies · c1a12602
      Guenter Roeck 提交于
      gpio-fan depends on GPIOLIB, not on GENERIC_GPIO.
      
      This fixes the following build error, seen if GPIOLIB is not defined:
      
      src/drivers/hwmon/gpio-fan.c: error: implicit declaration of function 'gpio_direction_output': => 372:3
      src/drivers/hwmon/gpio-fan.c: error: implicit declaration of function 'gpio_free': => 130:2
      src/drivers/hwmon/gpio-fan.c: error: implicit declaration of function 'gpio_get_value': => 79:2
      src/drivers/hwmon/gpio-fan.c: error: implicit declaration of function 'gpio_request': => 98:2
      src/drivers/hwmon/gpio-fan.c: error: implicit declaration of function 'gpio_set_value': => 156:3
      src/drivers/hwmon/gpio-fan.c: error: implicit declaration of function 'gpio_to_irq': => 114:2
      Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
      Acked-by: NJean Delvare <khali@linux-fr.org>
      Acked-by: NSimon Guinot <sguinot@lacie.com>
      c1a12602
  17. 23 3月, 2012 2 次提交