diff options
author | Michal Simek <michal.simek@amd.com> | 2023-06-13 13:22:26 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@amd.com> | 2023-07-21 09:00:38 +0200 |
commit | a24a1a19efca18a837d26a2cb6732ced47c3f071 (patch) | |
tree | e4b5088b0c6cc633874b1a116a7eeb4d3d1f4aad /drivers/watchdog | |
parent | 7fe5accb4516144b7abb8f183640cdf50423121e (diff) | |
download | u-boot-a24a1a19efca18a837d26a2cb6732ced47c3f071.tar.gz u-boot-a24a1a19efca18a837d26a2cb6732ced47c3f071.tar.bz2 u-boot-a24a1a19efca18a837d26a2cb6732ced47c3f071.zip |
watchdog: versal: Use new compatible xlnx,versal-wwdt
DT binding has been approved that's why use new compatible string.
The old one is mark as deprecated and should be removed after some
releases.
Link: https://lore.kernel.org/r/20230420104231.2243079-3-srinivas.neeli@amd.com/
Reviewed-by: Stefan Roese <sr@denx.de>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/6e78d0d2e21f2f9e7f8f448bb8e0d27ced4de7d3.1686655339.git.michal.simek@amd.com
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/xilinx_wwdt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/watchdog/xilinx_wwdt.c b/drivers/watchdog/xilinx_wwdt.c index d582e3cc8f..8b6fc30edb 100644 --- a/drivers/watchdog/xilinx_wwdt.c +++ b/drivers/watchdog/xilinx_wwdt.c @@ -191,7 +191,8 @@ static const struct wdt_ops xlnx_wwdt_ops = { }; static const struct udevice_id xlnx_wwdt_ids[] = { - { .compatible = "xlnx,versal-wwdt-1.0", }, + { .compatible = "xlnx,versal-wwdt", }, + { .compatible = "xlnx,versal-wwdt-1.0", }, /* deprecated */ {}, }; |