31 May, 2019

1 commit

  • Based on 1 normalized pattern(s):

    license terms gnu general public license v2

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

    has been chosen to replace the boilerplate/reference in 37 file(s).

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Steve Winslow
    Reviewed-by: Alexios Zavras
    Reviewed-by: Richard Fontana
    Reviewed-by: Allison Randal
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190528170027.724130665@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

17 Dec, 2018

1 commit

  • Use SENSOR[_DEVICE]_ATTR[_2]_{RO,RW,WO} to simplify the source code,
    to improve readbility, and to reduce the chance of inconsistencies.

    Also replace any remaining S_ in the driver with octal values.

    The conversion was done automatically with coccinelle. The semantic patches
    and the scripts used to generate this commit log are available at
    https://github.com/groeck/coccinelle-patches/hwmon/.

    This patch does not introduce functional changes. It was verified by
    compiling the old and new files and comparing text and data sizes.

    Signed-off-by: Guenter Roeck

    Guenter Roeck
     

14 Oct, 2015

1 commit

  • The description in the driver states: "ABX500 does not provide auto ADC,
    so to monitor the required temperatures, a periodic work is used. It is
    more important to not wake up the CPU... If the chip gets too hot during
    a sleep state it's most likely due to external factors, such as the
    surrounding temperature and nothing can be done in S/W."

    So it makes no sense to keep IRQs enabled as it need not be wakeup
    source. This patch removes the use of IRQF_NO_SUSPEND flag

    Signed-off-by: Sudeep Holla
    Signed-off-by: Guenter Roeck

    Sudeep Holla
     

21 Sep, 2015

1 commit


26 Jan, 2015

1 commit

  • Fixed the following warnings (reported by cppcheck):
    [drivers/hwmon/abx500.c:224]: (warning) %ld in format string (no. 1)
    requires 'long' but the argument type is 'unsigned long'.
    [drivers/hwmon/abx500.c:233]: (warning) %ld in format string (no. 1)
    requires 'long' but the argument type is 'unsigned long'.
    [drivers/hwmon/abx500.c:242]: (warning) %ld in format string (no. 1)
    requires 'long' but the argument type is 'unsigned long'.

    Signed-off-by: Asaf Vertz
    Signed-off-by: Guenter Roeck

    Asaf Vertz
     

20 Oct, 2014

1 commit


15 Jul, 2013

1 commit


05 May, 2013

1 commit


17 Apr, 2013

1 commit

  • Each of ST-Ericsson X500 chip set series consists of both ABX500 and DBX500
    chips. This is ABX500 hwmon driver, where the abx500.c is a common layer for
    all ABX500s, and the ab8500.c is specific for AB8500 chip. Under this designed
    structure, other chip specific files can be added simply using the same common
    layer abx500.c.

    Signed-off-by: Hongbo Zhang
    Reviewed-by: Guenter Roeck
    Acked-by: Guenter Roeck
    Signed-off-by: Anton Vorontsov

    Hongbo Zhang