mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
video: meson: keep power domain up after booting
Add driver flag to skip power domain disabling on device removal.
Fixes: 52edfed65d
("dm: core: device: switch off power domain after device removal")
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Tested-by: Guillaume La Roque <glaroque@baylibre.com>
This commit is contained in:
parent
5349e255ff
commit
9aa886cc0b
1 changed files with 1 additions and 1 deletions
|
@ -210,5 +210,5 @@ U_BOOT_DRIVER(meson_vpu) = {
|
||||||
.probe = meson_vpu_probe,
|
.probe = meson_vpu_probe,
|
||||||
.bind = meson_vpu_bind,
|
.bind = meson_vpu_bind,
|
||||||
.priv_auto_alloc_size = sizeof(struct meson_vpu_priv),
|
.priv_auto_alloc_size = sizeof(struct meson_vpu_priv),
|
||||||
.flags = DM_FLAG_PRE_RELOC,
|
.flags = DM_FLAG_PRE_RELOC | DM_FLAG_REMOVE_WITH_PD_ON,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue