net: sh_eth: Add r8a7794 support
authorHisashi Nakamura <hisashi.nakamura.ak@renesas.com>
Fri, 1 Aug 2014 15:03:00 +0000 (17:03 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 2 Aug 2014 23:38:32 +0000 (16:38 -0700)
Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com>
[uli: added bindings documentation]
Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/devicetree/bindings/net/sh_eth.txt
drivers/net/ethernet/renesas/sh_eth.c

index e7106b50dbdcda2d7ff3919e6a041d946a87623e..34d4db1a4e257a6efcf86aac42813de920214329 100644 (file)
@@ -9,6 +9,7 @@ Required properties:
              "renesas,ether-r8a7779"  if the device is a part of R8A7779 SoC.
              "renesas,ether-r8a7790"  if the device is a part of R8A7790 SoC.
              "renesas,ether-r8a7791"  if the device is a part of R8A7791 SoC.
+             "renesas,ether-r8a7794"  if the device is a part of R8A7794 SoC.
              "renesas,ether-r7s72100" if the device is a part of R7S72100 SoC.
 - reg: offset and length of (1) the E-DMAC/feLic register block (required),
        (2) the TSU register block (optional).
index 67b11c833870ed3a87d585e39e9e4bc156b10ba2..60e9c2cd051e98bd9a1466f32e7344c52f241572 100644 (file)
@@ -2746,6 +2746,7 @@ static const struct of_device_id sh_eth_match_table[] = {
        { .compatible = "renesas,ether-r8a7779", .data = &r8a777x_data },
        { .compatible = "renesas,ether-r8a7790", .data = &r8a779x_data },
        { .compatible = "renesas,ether-r8a7791", .data = &r8a779x_data },
+       { .compatible = "renesas,ether-r8a7794", .data = &r8a779x_data },
        { .compatible = "renesas,ether-r7s72100", .data = &r7s72100_data },
        { }
 };
@@ -2972,6 +2973,7 @@ static struct platform_device_id sh_eth_id_table[] = {
        { "r8a777x-ether", (kernel_ulong_t)&r8a777x_data },
        { "r8a7790-ether", (kernel_ulong_t)&r8a779x_data },
        { "r8a7791-ether", (kernel_ulong_t)&r8a779x_data },
+       { "r8a7794-ether", (kernel_ulong_t)&r8a779x_data },
        { }
 };
 MODULE_DEVICE_TABLE(platform, sh_eth_id_table);