1. 31 3月, 2009 1 次提交
  2. 18 2月, 2009 1 次提交
  3. 07 1月, 2009 2 次提交
  4. 08 2月, 2008 2 次提交
    • J
      hwmon: (w83627ehf) The W83627DHG has 8 VID pins · cbe311f2
      Jean Delvare 提交于
      While the W83627EHF/EHG has only 6 VID pins, the W83627DHG has 8 VID
      pins, to support VRD 11.0. Add support for this.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Signed-off-by: NMark M. Hoffman <mhoffman@lightlink.com>
      cbe311f2
    • J
      hwmon: Let the user override the detected Super-I/O device ID · 67b671bc
      Jean Delvare 提交于
      While it is possible to force SMBus-based hardware monitoring chip
      drivers to drive a not officially supported device, we do not have this
      possibility for Super-I/O-based drivers. That's unfortunate because
      sometimes newer chips are fully compatible and just forcing the driver
      to load would work. Instead of that we have to tell the users to
      recompile the kernel driver, which isn't an easy task for everyone.
      
      So, I propose that we add a module parameter to all Super-I/O based
      hardware monitoring drivers, letting advanced users force the driver
      to load on their machine. The user has to provide the device ID of a
      supposedly compatible device. This requires looking at the source code or
      a datasheet, so I am confident that users can't randomly force a driver
      without knowing what they are doing. Thus this should be relatively safe.
      
      As you can see from the code, the implementation is pretty simple and
      unintrusive.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Acked-by: NHans de Goede <j.w.r.degoede@hhs.nl>
      Signed-off-by: NMark M. Hoffman <mhoffman@lightlink.com>
      67b671bc
  5. 03 1月, 2008 1 次提交
  6. 10 10月, 2007 2 次提交
  7. 13 8月, 2007 2 次提交
  8. 20 7月, 2007 9 次提交
  9. 24 4月, 2007 1 次提交
  10. 18 4月, 2007 1 次提交
  11. 15 2月, 2007 1 次提交
  12. 13 12月, 2006 1 次提交
  13. 19 10月, 2006 1 次提交
  14. 29 9月, 2006 3 次提交
  15. 27 9月, 2006 1 次提交
  16. 23 6月, 2006 2 次提交
  17. 24 3月, 2006 2 次提交
  18. 06 1月, 2006 2 次提交
  19. 29 10月, 2005 2 次提交
  20. 06 9月, 2005 3 次提交
    • J
      [PATCH] I2C: refactor message in i2c_detach_client · 7bef5594
      Jean Delvare 提交于
      We could refactor the error message 34 different i2c drivers print if
      i2c_detach_client() fails in this function itself. Saves quite a few
      lines of code. Documentation is updated to reflect that change.
      
      Note that this patch should be applied after Rudolf Marek's w83792d
      patches.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      7bef5594
    • J
      [PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9) · 2d8672c5
      Jean Delvare 提交于
      Call the ISA chip drivers detection function directly instead of relying
      on i2c_detect. The net effect is that address lists won't be handled
      anymore, but they were mostly useless in the ISA case anyway (pc87360,
      smsc47m1, smsc47b397 had already dropped them).
      
      We don't need to handle multiple devices, all we may need is a way to
      force a given address instead of the original one (some drivers already
      do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
      chips, a way to force one given kind. All this may be added later on
      demand, but I actually don't think there will be much demand.
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      2d8672c5
    • J
      [PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (3/9) · fde09509
      Jean Delvare 提交于
      Convert the 10 ISA hardware monitoring drivers (it87, lm78, pc87360,
      sis5595, smsc47b397, smsc47m1, via686a, w83627hf, w83627ehf, w83781d) to
      explicitely register with i2c-isa. For hybrid drivers (it87, lm78,
      w83781d), we now have two separate instances of i2c_driver, one for the
      I2C interface of the chip, and one for ISA interface. In the long run,
      the one for ISA will be replaced with a different driver type.
      
      At this point, all drivers are working again, except for missing
      dependencies in Kconfig.
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      fde09509