13 Jan, 2012

1 commit


06 Jan, 2012

1 commit


31 Mar, 2011

1 commit


13 Jan, 2011

1 commit


15 Dec, 2009

3 commits


10 Dec, 2009

1 commit


07 Jan, 2009

1 commit

  • I2C_CLIENT_MODULE_PARM is overkill for force_subclients. We really
    only use 4 out of the 48 slots, so we're better defining a custom
    variable instead. This change saves 92 bytes of data for each of the
    five drivers affected.

    Signed-off-by: Jean Delvare
    Cc: Wolfgang Grandegger
    Acked-by: Marc Hulsman
    Cc: Mark M. Hoffman

    Jean Delvare
     

17 Jul, 2008

1 commit


19 Feb, 2008

1 commit


19 Oct, 2007

1 commit

  • Found these while looking at printk uses.

    Add missing newlines to dev_ uses
    Add missing KERN_ prefixes to multiline dev_s
    Fixed a wierd->weird spelling typo
    Added a newline to a printk

    Signed-off-by: Joe Perches
    Cc: "Luck, Tony"
    Cc: Jens Axboe
    Cc: Mark M. Hoffman
    Cc: Roland Dreier
    Cc: Tilman Schmidt
    Cc: David Woodhouse
    Cc: Jeff Garzik
    Cc: Stephen Hemminger
    Cc: Greg KH
    Cc: Jeremy Fitzhardinge
    Cc: Geert Uytterhoeven
    Cc: Alessandro Zummo
    Cc: David Brownell
    Cc: James Smart
    Cc: Andrew Vasquez
    Cc: "Antonino A. Daplas"
    Cc: Evgeniy Polyakov
    Cc: Russell King
    Cc: Jaroslav Kysela
    Cc: Takashi Iwai
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Joe Perches
     

10 Oct, 2007

2 commits


13 Dec, 2006

1 commit


29 Sep, 2006

1 commit

  • w83792d: Fix unchecked return status

    Fix the w83792d driver. Add error checking to device_create_file
    and also care to destroy the files upon exit.

    Signed-off-by: Rudolf Marek
    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Rudolf Marek
     

01 Jul, 2006

1 commit


27 Jun, 2006

1 commit

  • acquired (aquired)
    contiguous (contigious)
    successful (succesful, succesfull)
    surprise (suprise)
    whether (weather)
    some other misspellings

    Signed-off-by: Andreas Mohr
    Signed-off-by: Adrian Bunk

    Andreas Mohr
     

23 Jun, 2006

2 commits

  • Add missing data lock in w83792d driver to avoid unexpected
    data change.

    Signed-off-by: Yuan Mu
    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Yuan Mu
     
  • W83792D use pwm register low 4 bits to store PWM/DC value, bit 7
    is used to store fan PWM/DC mode. The store_pwm function did not
    convert the pwm input correctly, so it may change the fan mode
    when new value is set.

    This fix the problem. Change the "index" value of pwm*_mode
    and pwm* SENSOR_ATTR to simplify code.

    Signed-off-by: Yuan Mu
    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Yuan Mu
     

15 Apr, 2006

1 commit


24 Mar, 2006

3 commits


07 Feb, 2006

1 commit


06 Jan, 2006

5 commits


30 Nov, 2005

1 commit

  • 1. This patch add check for fan4,5,6,7 and do not create device file
    if their pins are not configured as fan.
    2. Fix the issue that can not set fan divisor to 128.
    3. Fix the index out of bounds bug in w83792d_detect function.

    Signed-off-by: Yuan Mu
    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Jean Delvare
     

29 Oct, 2005

2 commits

  • Use kzalloc instead of kmalloc+memset in all hardware monitoring
    drivers.

    Signed-off-by: Deepak Saxena
    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Deepak Saxena
     
  • Discard a common out-of-date comment in 5 hardware monitoring drivers.
    The hardware monitoring chip drivers are no more setting sensor limits
    at initialization time, for quite some time already.

    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    drivers/hwmon/lm78.c | 1 -
    drivers/hwmon/via686a.c | 1 -
    drivers/hwmon/w83627hf.c | 1 -
    drivers/hwmon/w83781d.c | 1 -
    drivers/hwmon/w83792d.c | 1 -
    5 files changed, 5 deletions(-)

    Jean Delvare
     

06 Sep, 2005

6 commits

  • The only part left in i2c-sensor is the VRM/VRD/VID handling code.
    This is in no way related to i2c, so it doesn't belong there. Move
    the code to hwmon, where it belongs.

    Note that not all hardware monitoring drivers do VRM/VRD/VID
    operations, so less drivers depend on hwmon-vid than there were
    depending on i2c-sensor.

    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Jean Delvare
     
  • The only thing left in i2c-sensor.h are module parameter definition
    macros. It's only an extension of what i2c.h offers, and this extension
    is not sensors-specific. As a matter of fact, a few non-sensors drivers
    use them. So we better merge them in i2c.h, and get rid of i2c-sensor.h
    altogether.

    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Jean Delvare
     
  • i2c_probe and i2c_detect now do the exact same thing and operate on
    the same data structure, so we can have everyone call i2c_probe.

    Signed-off-by: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    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: Jean Delvare
    Signed-off-by: Greg Kroah-Hartman

    Jean Delvare
     
  • This patch adds registration of hwmon class. Tested with help of i2c-stub.

    Signed-off-by: Rudolf Marek
    Signed-off-by: Greg Kroah-Hartman

    R.Marek@sh.cvut.cz
     
  • I would like to announce support for W83792D chip. This driver was developed
    by Winbond Electronics Corp. I added sysfs attributes callbacks infrastructure
    plus various code fixes and codingstyle cleanups. I would like to thank Winbond
    for supporting free software.

    This patch is against 2.6.13rc3 plus hwmon-class and hwmon-split.
    Separate patch for documantation and hwmon class register will follow.

    Signed-off-by: Rudolf Marek
    Signed-off-by: Chunhao Huang
    Signed-off-by: Greg Kroah-Hartman

    R.Marek@sh.cvut.cz