05 Sep, 2019

1 commit


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
     

09 Jan, 2019

1 commit

  • This converts the CLPS711x SPI master driver to use GPIO
    descriptors for chip select handling.

    The CLPS711x driver was merely requesting the GPIO and
    setting the CS line non-asserted so this was a pretty
    straight-forward conversion. The setup callback goes away.

    Cc: Alexander Shiyan
    Cc: Linuxarm
    Signed-off-by: Linus Walleij
    Signed-off-by: Mark Brown

    Linus Walleij
     

07 Jul, 2016

1 commit


20 Oct, 2014

1 commit


24 Sep, 2014

1 commit


06 Jun, 2014

1 commit


30 Mar, 2014

1 commit


27 Mar, 2014

1 commit


25 Mar, 2014

1 commit


13 Mar, 2014

1 commit


10 Mar, 2014

1 commit

  • The label argument was removed by commit 989847967cd762
    spi: clps711x: Use devm_gpio_request(), add it back.
    This makes it easier to know the gpio usage in /sys/kernel/debug/gpio.

    Also remove unnecessary gpio_is_valid() checking, devm_gpio_request() returns
    error if the requested gpio is invalid.

    Signed-off-by: Axel Lin
    Signed-off-by: Mark Brown

    Axel Lin
     

20 Feb, 2014

1 commit


04 Feb, 2014

3 commits


03 Feb, 2014

1 commit


14 Jan, 2014

1 commit


10 Jan, 2014

1 commit


15 Nov, 2013

1 commit


25 Oct, 2013

2 commits


04 Oct, 2013

2 commits


27 Sep, 2013

1 commit


26 Sep, 2013

1 commit


10 Sep, 2013

1 commit


15 Jul, 2013

1 commit


26 Jun, 2013

1 commit


30 May, 2013

1 commit


13 May, 2013

1 commit

  • The driver core clears the driver data to NULL after device_release
    or on probe failure, since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d
    (device-core: Ensure drvdata = NULL when no driver is bound).
    Thus, it is not needed to manually clear the device driver data to NULL.

    Signed-off-by: Jingoo Han
    Acked-by: Grant Likely
    Signed-off-by: Mark Brown

    Jingoo Han
     

05 Feb, 2013

1 commit

  • The spi core make sure that each transfer structure have the proper
    setting for bits_per_word before calling low level transfer APIs.

    Hence it is no more require to check again in low level driver for
    this field whether this is set correct or not. Removing such code
    from low level driver.

    The txx9 change also removes a test for bits_per_word set to 0, and
    forcing it to 8 in that case. This can also be removed now since
    spi_setup() ensures spi->bits_per_word is not zero.

    if (!spi->bits_per_word)
    spi->bits_per_word = 8;

    Signed-off-by: Laxman Dewangan
    Signed-off-by: Grant Likely

    Laxman Dewangan
     

08 Dec, 2012

1 commit

  • CONFIG_HOTPLUG is going away as an option. As result the __dev*
    markings will be going away.

    Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
    and __devexit.

    Bill Pemberton has done most of the legwork on this series. I've used
    his script to purge the attributes from the drivers/gpio tree.

    Reported-by: Bill Pemberton
    Signed-off-by: Grant Likely

    Grant Likely
     

06 Dec, 2012

1 commit

  • This patch add new driver for CLPS711X SPI master controller.
    Due to platform limitations driver supports only 8 bit transfer mode.
    Chip select control is handled via GPIO.

    Signed-off-by: Alexander Shiyan
    Acked-by: Arnd Bergmann
    Signed-off-by: Grant Likely

    Alexander Shiyan