diff options
author | Peter Rosin <peda@axentia.se> | 2016-07-08 06:12:17 -0400 |
---|---|---|
committer | Peter Rosin <peda@axentia.se> | 2016-08-25 16:11:00 -0400 |
commit | e8813c15be0a9e7f2c79c58d3329d92bcf056ecc (patch) | |
tree | 4d8f0b29bcd34446ddf619edd4b089040428e4d6 /MAINTAINERS | |
parent | 374f8436ff3a450a2f95a0c1910a0b17212cede1 (diff) |
dt-bindings: i2c: add support for 'i2c-arb' subnode
This gets rid of the need for a pointless 'reg' property for i2c
arbitrators.
I.e. this new and more compact style
some-arbitrator {
i2c-arb {
#address-cells = <1>;
#size-cells = <0>;
some-i2c-device@50 {
reg = <0x50>;
};
};
};
instead of the old
some-arbitrator {
#address-cells = <1>;
#size-cells = <0>;
i2c@0 {
reg = <0>;
#address-cells = <1>;
#size-cells = <0>;
some-i2c-device@50 {
reg = <0x50>;
};
};
};
Acked-by: Rob Herring <robh@kernel.org>
Reviewed-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Peter Rosin <peda@axentia.se>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 0bbe4b105c34..cde3e729df2c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -5667,6 +5667,7 @@ S: Maintained | |||
5667 | F: Documentation/i2c/i2c-topology | 5667 | F: Documentation/i2c/i2c-topology |
5668 | F: Documentation/i2c/muxes/ | 5668 | F: Documentation/i2c/muxes/ |
5669 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | 5669 | F: Documentation/devicetree/bindings/i2c/i2c-mux* |
5670 | F: Documentation/devicetree/bindings/i2c/i2c-arb* | ||
5670 | F: drivers/i2c/i2c-mux.c | 5671 | F: drivers/i2c/i2c-mux.c |
5671 | F: drivers/i2c/muxes/ | 5672 | F: drivers/i2c/muxes/ |
5672 | F: include/linux/i2c-mux.h | 5673 | F: include/linux/i2c-mux.h |