08 Dec, 2011

1 commit

  • Fixes:
    The function __devinit spi_gpio_probe() references
    a function __init spi_gpio_alloc.isra.4().
    If spi_gpio_alloc.isra.4 is only used by spi_gpio_probe then
    annotate spi_gpio_alloc.isra.4 with a matching annotation.

    [wsa: fix spi_gpio_request(), too]

    Signed-off-by: Manuel Lauss
    Signed-off-by: Wolfram Sang

    Manuel Lauss
     

01 Nov, 2011

1 commit


25 Oct, 2011

1 commit

  • For simple modules that contain a single platform_driver without any
    additional setup code then ends up being a block of duplicated
    boilerplate. This patch adds a new macro, module_platform_driver(),
    which replaces the module_init()/module_exit() registrations with
    template functions.

    Signed-off-by: Grant Likely
    Acked-by: Greg Kroah-Hartman
    Reviewed-by: Magnus Damm
    Reviewed-by: Mark Brown
    Reviewed-by: Stephen Boyd

    Grant Likely
     

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