05 Sep, 2019

1 commit


28 May, 2019

1 commit


13 Sep, 2016

1 commit


19 Sep, 2015

1 commit


06 Jan, 2015

1 commit


19 Dec, 2014

1 commit

  • A couple of new CONFIG_PM_RUNTIME users have been added recently
    in the SPI subsystem.

    However, after commit b2b49ccbdd54 (PM: Kconfig: Set PM_RUNTIME if
    PM_SLEEP is selected) PM_RUNTIME is always set if PM is set, so
    #ifdef blocks depending on CONFIG_PM_RUNTIME may now be changed to
    depend on CONFIG_PM.

    Replace CONFIG_PM_RUNTIME with CONFIG_PM everywhere under
    drivers/spi/ (again).

    Signed-off-by: Rafael J. Wysocki
    Acked-by: Mark Brown

    Rafael J. Wysocki
     

25 Nov, 2014

2 commits

  • drivers/spi/spi-meson-spifc.c:171:6: sparse: symbol 'meson_spifc_setup_speed' was not declared. Should it be static?

    Signed-off-by: Fengguang Wu
    Signed-off-by: Mark Brown

    kbuild test robot
     
  • This is a driver for the Amlogic Meson SPIFC (SPI flash controller),
    which is one of the two SPI controllers available on the SoC. It
    doesn't support DMA and has a 64-byte unified transmit/receive buffer.

    The device is optimized for interfacing with SPI NOR memories and
    allows the execution of standard operations such as read, page
    program, sector erase, etc. in a simplified way, toggling a bit in a
    dedicated register. The driver doesn't use those predefined commands
    and relies only on custom transfers.

    Signed-off-by: Beniamino Galvani
    Signed-off-by: Mark Brown

    Beniamino Galvani