09 Jan, 2012

1 commit

  • In ancient times it was necessary to manually initialize the bus field of an
    spi_driver to spi_bus_type. These days this is done in spi_driver_register(),
    so we can drop the manual assignment.

    The patch was generated using the following coccinelle semantic patch:
    //
    @@
    identifier _driver;
    @@
    struct spi_driver _driver = {
    .driver = {
    - .bus = &spi_bus_type,
    },
    };
    //

    Signed-off-by: Lars-Peter Clausen
    Acked-by: Mark Brown
    Signed-off-by: Samuel Ortiz

    Lars-Peter Clausen
     

01 Aug, 2011

1 commit

  • The tps65912 chip is a power management IC. It contains the following
    components:

    - Regulators
    - GPIO controller

    The core driver is registered as a platform driver, it provides communication
    through I2C and SPI interfaces.

    Signed-off-by: Margarita Olaya Cabrera
    Acked-by: Samuel Ortiz
    Acked-by: Liam Girdwood
    Signed-off-by: Samuel Ortiz

    Margarita Olaya