summaryrefslogtreecommitdiff
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-01-25 00:32:42 +0300
committerSimon Glass <sjg@chromium.org>2021-02-03 13:38:41 +0300
commita547fcb82880f89d9fdac218308b66e28d3e1481 (patch)
tree2ed509aa67a3b79e6ef124c505094a42507b7859 /drivers/watchdog
parentf724f0af2b5f9d2d17caa3b76cf58574788d8515 (diff)
downloadu-boot-a547fcb82880f89d9fdac218308b66e28d3e1481.tar.xz
dm: Rename DM_FLAG_REMOVE_WITH_PD_ON
This flag has the word 'REMOVE' in it which means it conflicts with the DM_REMOVE flags. Rename it to DM_FLAG_LEAVE_PD_ON which seems to indicate its purpose well enough. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/rti_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/rti_wdt.c b/drivers/watchdog/rti_wdt.c
index f64a39f657..8335b20ae8 100644
--- a/drivers/watchdog/rti_wdt.c
+++ b/drivers/watchdog/rti_wdt.c
@@ -119,5 +119,5 @@ U_BOOT_DRIVER(rti_wdt) = {
.ops = &rti_wdt_ops,
.probe = rti_wdt_probe,
.priv_auto = sizeof(struct rti_wdt_priv),
- .flags = DM_FLAG_REMOVE_WITH_PD_ON,
+ .flags = DM_FLAG_LEAVE_PD_ON,
};