05 Jun, 2019

1 commit

  • Based on 1 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 and
    only version 2 as published by the free software foundation this
    program is distributed in the hope that it will be useful but
    without any warranty without even the implied warranty of
    merchantability or fitness for a particular purpose see the gnu
    general public license for more details

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

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

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

    Thomas Gleixner
     

14 May, 2019

1 commit


01 Nov, 2017

1 commit


20 Oct, 2014

1 commit


21 Jan, 2014

3 commits


18 Jun, 2013

2 commits

  • Use devm_ioremap_resource and devm_kzalloc to simplify error
    paths and reduce lines of code. Also use dev_err() to keep
    consistency and drop the .remove function because the devm
    functions take care of what it's doing besides the now obsolete
    platform_set_drvdata() which we can just drop. Finally, use
    module_platform_driver() to save some more lines.

    Cc: David Brown
    Signed-off-by: Stephen Boyd
    Acked-by: Lee Jones
    Signed-off-by: Samuel Ortiz

    Stephen Boyd
     
  • This allows the ssbi module to be autoloaded on boot.

    Cc: David Brown
    Signed-off-by: Stephen Boyd
    Signed-off-by: Samuel Ortiz

    Stephen Boyd
     

12 Jun, 2013

1 commit

  • There is no reason for ssbi to have its own top-level driver directory
    when the only users of this interface are all MFD drivers. The only
    mainline driver using it at the moment (PM8921) is marked broken and in
    fact does not compile. I have verified that fixing the trivial build
    breakage in pm8921 links in the new ssbi code just fine, but that
    can be a separate patch.

    Signed-off-by: Arnd Bergmann
    Acked-by: Greg Kroah-Hartman
    Acked-by: Nicolas Pitre
    Acked-by: David Brown
    Signed-off-by: Samuel Ortiz

    Arnd Bergmann