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>
This commit is contained in:
@@ -200,7 +200,7 @@ int device_remove(struct udevice *dev, uint flags)
|
||||
|
||||
if (!(flags & DM_REMOVE_NO_PD) &&
|
||||
!(drv->flags &
|
||||
(DM_FLAG_DEFAULT_PD_CTRL_OFF | DM_FLAG_REMOVE_WITH_PD_ON)) &&
|
||||
(DM_FLAG_DEFAULT_PD_CTRL_OFF | DM_FLAG_LEAVE_PD_ON)) &&
|
||||
dev != gd->cur_serial_dev)
|
||||
dev_power_domain_off(dev);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user