1. 15 Sep, 2009 1 commit
  2. 07 Jan, 2009 1 commit
    • Jean Delvare's avatar
      hwmon: Check for ACPI resource conflicts · b9acb64a
      Jean Delvare authored
      
      Check for ACPI resource conflicts in hwmon drivers. I've included
      all Super-I/O and PCI drivers.
      
      I've voluntarily left out:
      * Vendor-specific drivers: if they conflicted on any system, this would
        pretty much mean that they conflict on all systems, and we would know
        by now.
      * Legacy ISA drivers (lm78 and w83781d): they only support chips found
        on old designs were ACPI either wasn't supported or didn't deal with
        thermal management.
      * Drivers accessing the I/O resources indirectly (e.g. through SMBus):
        the checks are already done where they belong, i.e. in the bus drivers.
      Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
      Acked-by: default avatarDavid Hubbard <david.c.hubbard@gmail.com>
      b9acb64a
  3. 17 Feb, 2008 1 commit
  4. 19 Oct, 2007 1 commit
  5. 09 Oct, 2007 1 commit
  6. 30 Jul, 2007 1 commit
    • Jean Delvare's avatar
      hwmon: Add missing __devexit tags in various drivers · d0546128
      Jean Delvare authored
      
      On Sun, 22 Jul 2007 00:30:56 +0200, Gabriel C wrote:
      > I noticed this warnings on current git:
      >
      > drivers/hwmon/pc87360.c:1082: warning: 'pc87360_remove' defined but not used
      > drivers/hwmon/sis5595.c:580: warning: 'sis5595_remove' defined but not used
      > drivers/hwmon/smsc47m1.c:608: warning: 'smsc47m1_remove' defined but not used
      > drivers/hwmon/via686a.c:648: warning: 'via686a_remove' defined but not used
      > drivers/hwmon/vt8231.c:755: warning: 'vt8231_remove' defined but not used
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarMark M. Hoffman <mhoffman@lightlink.com>
      d0546128
  7. 19 Jul, 2007 3 commits
  8. 14 Feb, 2007 1 commit
  9. 28 Sep, 2006 1 commit
  10. 26 Sep, 2006 1 commit
  11. 23 Mar, 2006 1 commit
  12. 06 Jan, 2006 2 commits
  13. 28 Oct, 2005 5 commits
  14. 09 Sep, 2005 1 commit
  15. 05 Sep, 2005 5 commits
  16. 11 Jul, 2005 2 commits
    • Jean Delvare's avatar
      [PATCH] I2C: Move hwmon drivers (2/3) · 8d5d45fb
      Jean Delvare authored
      
      Part 2: Move the driver files themselves.
      
      Note that the patch "adds trailing whitespace", because it does move the
      files as-is, and some files happen to have trailing whitespace.
      
      From: Jean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      8d5d45fb
    • Denis Vlasenko's avatar
      [PATCH] I2C: Coding style cleanups to via686a · 6328c0e1
      Denis Vlasenko authored
      
      On Wednesday 22 June 2005 08:17, Greg KH wrote:
      > [PATCH] I2C: Coding style cleanups to via686a
      >
      > The via686a hardware monitoring driver has infamous coding style at the
      > moment. I'd like to clean up the mess before I start working on other
      > changes to this driver. Is the following patch acceptable? No code
      > change, only coding style (indentation, alignments, trailing white
      > space, a few parentheses and a typo).
      >
      > Signed-off-by: Jean Delvare <khali@linux-fr.org>
      > Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
      
      Nice.
      
      You missed some. This one is on top of your patch:
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      6328c0e1
  17. 22 Jun, 2005 5 commits
  18. 20 Jun, 2005 1 commit
  19. 19 Apr, 2005 2 commits
    • Jean Delvare's avatar
      [PATCH] I2C: Fix incorrect sysfs file permissions in it87 and via686a drivers · 1d66c64c
      Jean Delvare authored
      
      The it87 and via686a hardware monitoring drivers each create a sysfs
      file named "alarms" in R/W mode, while they should really create it in
      read-only mode. Since we don't provide a store function for these files,
      write attempts to these files will do something undefined (I guess) and
      bad (I am sure). My own try resulted in a locked terminal (where I
      attempted the write) and a 100% CPU load until next reboot.
      
      As a side note, wouldn't it make sense to check, when creating sysfs
      files, that readable files have a non-NULL show method, and writable
      files have a non-NULL store method? I know drivers are not supposed to
      do stupid things, but there is already a BUG_ON for several conditions
      in sysfs_create_file, so maybe we could add two more?
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      1d66c64c
    • Jean Delvare's avatar
      [PATCH] I2C: via686a cleanups · 86b5ac87
      Jean Delvare authored
      
      Here comes a small cleanup patch for the via686a driver. I noticed the
      following two non-fatal problems:
      
      1* The device parent is explicitely set, but it's not needed because the
      i2c core will do as the client is registered.
      
      2* snprintf is used where strlcpy would suffice.
      
      Fixing them brings the via686a driver in line with what other similar
      drivers do.
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      86b5ac87
  20. 16 Apr, 2005 1 commit
    • Linus Torvalds's avatar
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds authored
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4