15 Jul, 2020

1 commit


17 Sep, 2015

1 commit


24 Mar, 2015

1 commit


22 Dec, 2014

1 commit


20 Oct, 2014

1 commit


24 Jun, 2014

2 commits


22 Jun, 2014

1 commit


15 Apr, 2014

1 commit


30 Mar, 2014

2 commits


29 Mar, 2014

1 commit


28 Mar, 2014

1 commit


27 Mar, 2014

1 commit


03 Mar, 2014

1 commit


13 Feb, 2014

1 commit


09 Oct, 2013

1 commit


23 May, 2013

1 commit

  • Use the wrapper functions for getting and setting the driver data using
    platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev,
    so we can directly pass a struct platform_device.

    Signed-off-by: Jingoo Han
    Signed-off-by: Mark Brown

    Jingoo Han
     

05 Feb, 2013

1 commit

  • Some of the spi driver module remove hooks were annotated with __exit
    and referenced with __exit_p(). Presumably these were supposed to be
    __devinit, __devexit and __devexit_p() since __init/__exit for a
    probe/remove hook has never been correct. They also got missed during
    the big __devinit/__devexit purge since they didn't match the pattern.
    Remove then now to be rid of it.

    v2: purge __init also

    Reported-by: Arnd Bergmann
    [Arnd set a patch cleaning up one, and then I found more]
    Signed-off-by: Grant Likely

    Grant Likely
     

21 Sep, 2012

1 commit

  • We are moving omap2+ to use the device tree based pinctrl-single.c
    and will be removing the old mux framework. This will remove the
    omap1 specific parts from plat-omap.

    Acked-by: Felipe Balbi
    Cc: Grant Likely
    Cc: Alan Stern
    Cc: Greg Kroah-Hartman
    Cc: Richard Purdie
    Cc: Florian Tobias Schandinat
    Cc: Tomi Valkeinen
    Cc: linux-usb@vger.kernel.org
    Cc: linux-pcmcia@lists.infradead.org
    Cc: spi-devel-general@lists.sourceforge.net
    Signed-off-by: Tony Lindgren

    Tony Lindgren
     

13 Sep, 2012

1 commit


29 Mar, 2012

1 commit


01 Nov, 2011

1 commit


06 Jun, 2011

1 commit

  • Sort the SPI makefile and enforce the naming convention spi_*.c for
    spi drivers.

    This change also rolls the contents of atmel_spi.h into the .c file
    since there is only one user of that particular include file.

    v2: - Use 'spi-' prefix instead of 'spi_' to match what seems to be
    be the predominant pattern for subsystem prefixes.
    - Clean up filenames in Kconfig and header comment blocks

    Signed-off-by: Grant Likely
    Acked-by: Wolfram Sang
    Acked-by: Linus Walleij

    Grant Likely