13 Aug, 2020

1 commit

  • Rationale:
    Reduces attack surface on kernel devs opening the links for MITM
    as HTTPS traffic is much harder to manipulate.

    Deterministic algorithm:
    For each file:
    If not .svg:
    For each line:
    If doesn't contain `\bxmlns\b`:
    For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`:
    If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`:
    If both the HTTP and HTTPS versions
    return 200 OK and serve the same content:
    Replace HTTP with HTTPS.

    Signed-off-by: Alexander A. Klimov
    Acked-by: Rob Herring
    Signed-off-by: Lee Jones

    Alexander A. Klimov
     

14 May, 2019

1 commit

  • MODULE_DEVICE_TABLE(of, should be called to complete DT
    OF mathing mechanism and register it.

    Before this patch:
    modinfo drivers/mfd/tps65912-spi.ko | grep alias
    alias: spi:tps65912

    After this patch:
    modinfo drivers/mfd/tps65912-spi.ko | grep alias
    alias: of:N*T*Cti,tps65912C*
    alias: of:N*T*Cti,tps65912
    alias: spi:tps65912

    Reported-by: Javier Martinez Canillas
    Signed-off-by: Daniel Gomez
    Signed-off-by: Lee Jones

    Daniel Gomez
     

27 Apr, 2017

1 commit


12 Feb, 2016

2 commits


28 Oct, 2015

1 commit


28 Jul, 2014

1 commit


13 Jun, 2013

1 commit


29 Nov, 2012

3 commits

  • CONFIG_HOTPLUG is going away as an option so __devexit is no
    longer needed.

    Signed-off-by: Bill Pemberton
    Cc: Srinidhi Kasagar
    Cc: Peter Tyser
    Cc: Daniel Walker
    Cc: Bryan Huntsman
    Acked-by: David Brown
    Acked-by: Linus Walleij
    Acked-by: Mark Brown
    Signed-off-by: Greg Kroah-Hartman

    Bill Pemberton
     
  • CONFIG_HOTPLUG is going away as an option so __devinit is no longer
    needed.

    Signed-off-by: Bill Pemberton
    Cc: Srinidhi Kasagar
    Cc: Peter Tyser
    Cc: Daniel Walker
    Cc: Bryan Huntsman
    Acked-by: David Brown
    Acked-by: Mark Brown
    Signed-off-by: Greg Kroah-Hartman

    Bill Pemberton
     
  • CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
    needed.

    Signed-off-by: Bill Pemberton
    Cc: Srinidhi Kasagar
    Cc: Peter Tyser
    Cc: Daniel Walker
    Cc: Bryan Huntsman
    Acked-by: David Brown
    Acked-by: Linus Walleij
    Acked-by: Mark Brown
    Signed-off-by: Greg Kroah-Hartman

    Bill Pemberton
     

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