summaryrefslogtreecommitdiff
path: root/drivers/mtd/renesas_rpc_hf.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2022-03-29 15:19:09 +0300
committerMarek Vasut <marek.vasut+renesas@gmail.com>2022-09-02 14:25:01 +0300
commit68083b897b57309c29039b27d2580e4eb9c6e455 (patch)
treeaf27cd8d6815b45182d7b31ad11e2bfbdeaceec2 /drivers/mtd/renesas_rpc_hf.c
parent33aca1c86856e4cd303dad3701fe7b3589fb805e (diff)
downloadu-boot-68083b897b57309c29039b27d2580e4eb9c6e455.tar.xz
renesas: Fix RPC-IF compatible values
The compatible values used for device nodes representing Renesas Reduced Pin Count Interfaces were based on preliminary versions of the Device Tree Bindings. Correct them in both DTSi files and drivers, to match the final DT Bindings. Note that there are no DT bindings for RPC-IF on RZ/A1 yet, hence the most logical SoC-specific value is used, without specifying a family-specific value. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Diffstat (limited to 'drivers/mtd/renesas_rpc_hf.c')
-rw-r--r--drivers/mtd/renesas_rpc_hf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/renesas_rpc_hf.c b/drivers/mtd/renesas_rpc_hf.c
index 2c61ce7b6e..aca7a6cdd2 100644
--- a/drivers/mtd/renesas_rpc_hf.c
+++ b/drivers/mtd/renesas_rpc_hf.c
@@ -388,7 +388,8 @@ static int rpc_hf_probe(struct udevice *dev)
}
static const struct udevice_id rpc_hf_ids[] = {
- { .compatible = "renesas,rpc" },
+ { .compatible = "renesas,r7s72100-rpc-if" },
+ { .compatible = "renesas,rcar-gen3-rpc-if" },
{}
};