13 Sep, 2016

1 commit

  • These structures are only used to copy into other structures, so declare
    them as const.

    The semantic patch that makes this change is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @r disable optional_qualifier@
    identifier i;
    position p;
    @@
    static struct gpio_chip i@p = { ... };

    @ok@
    identifier r.i;
    expression e;
    position p;
    @@
    e = i@p;

    @bad@
    position p != {r.p,ok.p};
    identifier r.i;
    struct gpio_chip e;
    @@
    e@i@p

    @depends on !bad disable optional_qualifier@
    identifier r.i;
    @@
    static
    +const
    struct gpio_chip i = { ... };
    //

    Signed-off-by: Julia Lawall
    Acked-by: Joachim Eastwood
    Signed-off-by: Linus Walleij

    Julia Lawall
     

25 Feb, 2016

2 commits


19 Feb, 2016

1 commit


10 Feb, 2016

1 commit

  • Add generic parallel-in/serial-out shift register GPIO driver.

    This includes SPI compatible devices like SN74165 serial-out shift
    registers and the SN65HVS88x series of industrial serializers that can
    be read over the SPI bus and used for GPI (General Purpose Input).

    Signed-off-by: Andrew F. Davis
    Tested-by: Sean Nyekjaer
    Signed-off-by: Linus Walleij

    Andrew F. Davis