19 Jun, 2019

1 commit

  • Based on 2 normalized pattern(s):

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation #

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

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

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Enrico Weigelt
    Reviewed-by: Kate Stewart
    Reviewed-by: Allison Randal
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

06 Jul, 2017

1 commit


27 Apr, 2017

1 commit


16 Mar, 2016

1 commit

  • The ipaq-micro driver uses SET_SYSTEM_SLEEP_PM_OPS() to
    remove the reference to its resume function, but does
    not use an #ifdef around the definition, so we get
    a build warning:

    drivers/mfd/ipaq-micro.c:379:12: error: 'micro_resume' defined but not used [-Werror=unused-function]

    This adds a __maybe_unused annotation so the compiler knows
    it can silently drop it instead of warning.

    Signed-off-by: Arnd Bergmann
    Signed-off-by: Lee Jones

    Arnd Bergmann
     

11 Aug, 2015

3 commits


25 Jul, 2014

1 commit

  • This is part of an effort to clean-up the MFD subsystem.

    ERROR: space required before the open parenthesis '('
    + if(!micro->msg)

    WARNING: unnecessary whitespace before a quoted newline
    + dev_dbg(micro->dev, "key message ignored, no handle \n");

    WARNING: unnecessary whitespace before a quoted newline
    + dev_dbg(micro->dev, "touchscreen message ignored, no handle \n");

    WARNING: space prohibited before semicolon
    + rx->id = (ch & 0xf0) >> 4 ;

    total: 1 errors, 3 warnings, 482 lines checked

    Signed-off-by: Lee Jones

    Lee Jones
     

03 Jun, 2014

3 commits

  • mfd_add_devices() expects array of struct mfd_cell to be const.

    Signed-off-by: Krzysztof Kozlowski
    Acked-by: Linus Walleij
    Signed-off-by: Lee Jones

    Krzysztof Kozlowski
     
  • Use devm_ioremap_resource() because devm_request_and_ioremap() is
    obsoleted by devm_ioremap_resource().

    Signed-off-by: Jingoo Han
    Acked-by: Linus Walleij
    Signed-off-by: Lee Jones

    Jingoo Han
     
  • This adds a driver for the Atmel Microcontroller found on the
    iPAQ h3xxx series. This device handles some keys, the
    touchscreen, and the battery monitoring.

    This is a port of a driver from handhelds.org 2.6.21 kernel,
    written by Alessandro Gardich based on Andrew Christians
    original HAL-driver. It has been heavily cleaned and
    converted to mfd-core by Dmitry Artamonow and rewritten
    again for the v3.x series kernels by Linus Walleij,
    bringing back some of the functionality lost from Andrew's
    original driver.

    Acked-by: Greg Kroah-Hartman
    Signed-off-by: Alessandro Gardich
    Signed-off-by: Dmitry Artamonow
    Signed-off-by: Linus Walleij
    Signed-off-by: Lee Jones

    Linus Walleij