···11+* Generic 8-bits shift register GPIO driver22+33+Required properties:44+- compatible : Should be "fairchild,74hc595"55+- reg : chip select number66+- gpio-controller : Marks the device node as a gpio controller.77+- #gpio-cells : Should be two. The first cell is the pin number and88+ the second cell is used to specify the gpio polarity:99+ 0 = active high1010+ 1 = active low1111+- registers-number: Number of daisy-chained shift registers1212+1313+Example:1414+1515+gpio5: gpio5@0 {1616+ compatible = "fairchild,74hc595";1717+ reg = <0>;1818+ gpio-controller;1919+ #gpio-cells = <2>;2020+ registers-number = <4>;2121+ spi-max-frequency = <100000>;2222+};