summaryrefslogtreecommitdiff
path: root/include/dm
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-01-24 14:32:42 -0700
committerSimon Glass <sjg@chromium.org>2021-02-03 03:38:41 -0700
commita547fcb82880f89d9fdac218308b66e28d3e1481 (patch)
tree2ed509aa67a3b79e6ef124c505094a42507b7859 /include/dm
parentf724f0af2b5f9d2d17caa3b76cf58574788d8515 (diff)
downloadu-boot-a547fcb82880f89d9fdac218308b66e28d3e1481.tar.gz
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 'include/dm')
-rw-r--r--include/dm/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/device.h b/include/dm/device.h
index e665558444..8f38cf1633 100644
--- a/include/dm/device.h
+++ b/include/dm/device.h
@@ -71,7 +71,7 @@ struct driver_info;
* Device is removed without switching off its power domain. This might
* be required, i. e. for serial console (debug) output when booting OS.
*/
-#define DM_FLAG_REMOVE_WITH_PD_ON (1 << 13)
+#define DM_FLAG_LEAVE_PD_ON (1 << 13)
/*
* One or multiple of these flags are passed to device_remove() so that