diff options
author | Simon Glass | 2021-01-24 14:32:42 -0700 |
---|---|---|
committer | Simon Glass | 2021-02-03 03:38:41 -0700 |
commit | a547fcb82880f89d9fdac218308b66e28d3e1481 (patch) | |
tree | 2ed509aa67a3b79e6ef124c505094a42507b7859 /include/dm/device.h | |
parent | f724f0af2b5f9d2d17caa3b76cf58574788d8515 (diff) |
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/device.h')
-rw-r--r-- | include/dm/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/device.h b/include/dm/device.h index e665558444b..8f38cf16331 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 |