i2c: rcar: add support for r8a7796 (R-Car M3-W)
authorUlrich Hecht <ulrich.hecht+renesas@gmail.com>
Wed, 14 Sep 2016 16:46:06 +0000 (18:46 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Fri, 16 Sep 2016 17:46:10 +0000 (19:46 +0200)
Same as r8a7795.

Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Documentation/devicetree/bindings/i2c/i2c-rcar.txt
drivers/i2c/busses/i2c-rcar.c

index 5f0cb50..239632a 100644 (file)
@@ -11,6 +11,7 @@ Required properties:
        "renesas,i2c-r8a7793"
        "renesas,i2c-r8a7794"
        "renesas,i2c-r8a7795"
        "renesas,i2c-r8a7793"
        "renesas,i2c-r8a7794"
        "renesas,i2c-r8a7795"
+       "renesas,i2c-r8a7796"
 - reg: physical base address of the controller and length of memory mapped
   region.
 - interrupts: interrupt specifier.
 - reg: physical base address of the controller and length of memory mapped
   region.
 - interrupts: interrupt specifier.
index 400e344..7f28412 100644 (file)
@@ -802,6 +802,7 @@ static const struct of_device_id rcar_i2c_dt_ids[] = {
        { .compatible = "renesas,i2c-r8a7793", .data = (void *)I2C_RCAR_GEN2 },
        { .compatible = "renesas,i2c-r8a7794", .data = (void *)I2C_RCAR_GEN2 },
        { .compatible = "renesas,i2c-r8a7795", .data = (void *)I2C_RCAR_GEN3 },
        { .compatible = "renesas,i2c-r8a7793", .data = (void *)I2C_RCAR_GEN2 },
        { .compatible = "renesas,i2c-r8a7794", .data = (void *)I2C_RCAR_GEN2 },
        { .compatible = "renesas,i2c-r8a7795", .data = (void *)I2C_RCAR_GEN3 },
+       { .compatible = "renesas,i2c-r8a7796", .data = (void *)I2C_RCAR_GEN3 },
        {},
 };
 MODULE_DEVICE_TABLE(of, rcar_i2c_dt_ids);
        {},
 };
 MODULE_DEVICE_TABLE(of, rcar_i2c_dt_ids);