31 May, 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 as published by
    the free software foundation either version 2 of the license or at
    your option any later version

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-or-later

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

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

    Thomas Gleixner
     

30 Nov, 2017

1 commit

  • Fix ptr_ret.cocci warnings:
    drivers/pcmcia/at91_cf.c:239:1-3: WARNING: PTR_ERR_OR_ZERO can be used

    Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

    Generated by: scripts/coccinelle/api/ptr_ret.cocci

    Signed-off-by: Vasyl Gomonovych
    Acked-by: Nicolas Ferre
    Signed-off-by: Alexandre Belloni

    Vasyl Gomonovych
     

20 May, 2015

1 commit


13 Mar, 2015

1 commit

  • The mach/io.h header on at91 is used to support a nonstandard I/O space
    window for the cf card driver. This changes the driver to use pci_ioremap_io
    in order to have the standard location, and then removes the custom
    mach/io.h.

    [alexandre.belloni@free-electrons.com: Added PCI dependency]
    Signed-off-by: Alexandre Belloni
    Signed-off-by: Arnd Bergmann
    Signed-off-by: Nicolas Ferre

    Arnd Bergmann
     

20 Oct, 2014

1 commit


27 Sep, 2013

1 commit

  • Move probe out of __init section and don't use platform_driver_probe
    which cannot be used with deferred probing.

    Since commit e9354576 ("gpiolib: Defer failed gpio requests by default")
    this driver might return -EPROBE_DEFER if a gpio_request fails.

    Cc: Jean-Christophe PLAGNIOL-VILLARD
    Signed-off-by: Johan Hovold
    Acked-by: Nicolas Ferre
    Signed-off-by: Greg Kroah-Hartman

    Johan Hovold
     

07 Jun, 2013

7 commits


06 Nov, 2012

1 commit


30 Mar, 2012

1 commit

  • Pull a few PCMCIA updates from Dominik Brodowski.

    Fix up trivial conflict (modified code in question had been removed) in
    drivers/pcmcia/soc_common.c.

    * git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia:
    pcmcia at91_cf: fix raw gpio number usage
    ARM: pxa: fix error handling in pxa2xx_drv_pcmcia_probe
    pcmcia: Convert to DEFINE_PCI_DEVICE_TABLE
    pcmcia: convert drivers/pcmcia/* to use module_platform_driver()
    pcmcia: irq: Remove IRQF_DISABLED

    Linus Torvalds
     

03 Mar, 2012

1 commit

  • This patches fixes two things:
    * Use gpio_valid function to check gpio before usage
    This must be done after 63b4c29678500 which uses -EINVAL for unused pin's
    * Use gpio_to_irq to convert gpio's to irq
    The driver assumed a 1:1 mapping between gpio and irq numbers. This is no
    longer true after d0fbda9add3281.

    Tested on custom RM9200 board with 8gb CF card.

    Signed-off-by: Joachim Eastwood
    Acked-by: Jean-Christophe PLAGNIOL-VILLARD
    Signed-off-by: Dominik Brodowski

    Joachim Eastwood
     

23 Feb, 2012

1 commit


10 Jun, 2011

1 commit


30 Mar, 2010

1 commit

  • …it slab.h inclusion from percpu.h

    percpu.h is included by sched.h and module.h and thus ends up being
    included when building most .c files. percpu.h includes slab.h which
    in turn includes gfp.h making everything defined by the two files
    universally available and complicating inclusion dependencies.

    percpu.h -> slab.h dependency is about to be removed. Prepare for
    this change by updating users of gfp and slab facilities include those
    headers directly instead of assuming availability. As this conversion
    needs to touch large number of source files, the following script is
    used as the basis of conversion.

    http://userweb.kernel.org/~tj/misc/slabh-sweep.py

    The script does the followings.

    * Scan files for gfp and slab usages and update includes such that
    only the necessary includes are there. ie. if only gfp is used,
    gfp.h, if slab is used, slab.h.

    * When the script inserts a new include, it looks at the include
    blocks and try to put the new include such that its order conforms
    to its surrounding. It's put in the include block which contains
    core kernel includes, in the same order that the rest are ordered -
    alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
    doesn't seem to be any matching order.

    * If the script can't find a place to put a new include (mostly
    because the file doesn't have fitting include block), it prints out
    an error message indicating which .h file needs to be added to the
    file.

    The conversion was done in the following steps.

    1. The initial automatic conversion of all .c files updated slightly
    over 4000 files, deleting around 700 includes and adding ~480 gfp.h
    and ~3000 slab.h inclusions. The script emitted errors for ~400
    files.

    2. Each error was manually checked. Some didn't need the inclusion,
    some needed manual addition while adding it to implementation .h or
    embedding .c file was more appropriate for others. This step added
    inclusions to around 150 files.

    3. The script was run again and the output was compared to the edits
    from #2 to make sure no file was left behind.

    4. Several build tests were done and a couple of problems were fixed.
    e.g. lib/decompress_*.c used malloc/free() wrappers around slab
    APIs requiring slab.h to be added manually.

    5. The script was run on all .h files but without automatically
    editing them as sprinkling gfp.h and slab.h inclusions around .h
    files could easily lead to inclusion dependency hell. Most gfp.h
    inclusion directives were ignored as stuff from gfp.h was usually
    wildly available and often used in preprocessor macros. Each
    slab.h inclusion directive was examined and added manually as
    necessary.

    6. percpu.h was updated not to include slab.h.

    7. Build test were done on the following configurations and failures
    were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
    distributed build env didn't work with gcov compiles) and a few
    more options had to be turned off depending on archs to make things
    build (like ipr on powerpc/64 which failed due to missing writeq).

    * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
    * powerpc and powerpc64 SMP allmodconfig
    * sparc and sparc64 SMP allmodconfig
    * ia64 SMP allmodconfig
    * s390 SMP allmodconfig
    * alpha SMP allmodconfig
    * um on x86_64 SMP allmodconfig

    8. percpu.h modifications were reverted so that it could be applied as
    a separate patch and serve as bisection point.

    Given the fact that I had only a couple of failures from tests on step
    6, I'm fairly confident about the coverage of this conversion patch.
    If there is a breakage, it's likely to be something in one of the arch
    headers which should be easily discoverable easily on most builds of
    the specific arch.

    Signed-off-by: Tejun Heo <tj@kernel.org>
    Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
    Cc: Ingo Molnar <mingo@redhat.com>
    Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>

    Tejun Heo
     

24 Mar, 2010

1 commit

  • Instead of requiring PCMCIA socket drivers to call various functions
    during their (bus) resume and suspend functions, register an own
    dev_pm_ops for this class. This fixes several suspend/resume bugs
    seen on db1xxx-ss, and probably on some other socket drivers, too.

    With regard to the asymmetry with only _noirq suspend, but split up
    resume, please see bug 14334 and commit 9905d1b411946fb3 .

    Signed-off-by: Dominik Brodowski

    Dominik Brodowski
     

18 Feb, 2010

1 commit

  • This fixes:

    drivers/pcmcia/at91_cf.c:55:1: warning: "SZ_2K" redefined

    Since

    c1191b0 ([ARM] Kirkwood: create a mapping for the Security Accelerator SRAM)

    SZ_2K is defined in arch/arm/include/asm/sizes.h.

    Signed-off-by: Uwe Kleine-König
    Acked-by: Andrew Victor
    Signed-off-by: Dominik Brodowski

    Uwe Kleine-König
     

29 Sep, 2009

1 commit


16 Oct, 2008

1 commit