diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-13 08:56:34 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-02-14 09:43:27 -0700 |
commit | e316fbabbf1fe505162e35044c7924cbca0d73fd (patch) | |
tree | 838404c3c52c358673bd7465733dfba296c03c06 /include/dm/ofnode.h | |
parent | 8c103c33fb14086aad6feda504934314d4397dd7 (diff) | |
download | u-boot-e316fbabbf1fe505162e35044c7924cbca0d73fd.tar.gz u-boot-e316fbabbf1fe505162e35044c7924cbca0d73fd.tar.bz2 u-boot-e316fbabbf1fe505162e35044c7924cbca0d73fd.zip |
dm: treewide: Complete migration to new driver model schema
Update various build and test components to use the new schema.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/ofnode.h')
-rw-r--r-- | include/dm/ofnode.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/dm/ofnode.h b/include/dm/ofnode.h index 3f6b0843c5..c00677275e 100644 --- a/include/dm/ofnode.h +++ b/include/dm/ofnode.h @@ -1188,12 +1188,12 @@ int ofnode_read_simple_size_cells(ofnode node); * determine if a node was bound in one of SPL/TPL stages. * * There are 4 settings currently in use - * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only - * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL + * - bootph-some-ram: U-Boot proper pre-relocation only + * - bootph-all: all phases * Existing platforms only use it to indicate nodes needed in - * SPL. Should probably be replaced by u-boot,dm-spl for new platforms. - * - u-boot,dm-spl: SPL and U-Boot pre-relocation - * - u-boot,dm-tpl: TPL and U-Boot pre-relocation + * SPL. Should probably be replaced by bootph-pre-ram for new platforms. + * - bootph-pre-ram: SPL and U-Boot pre-relocation + * - bootph-pre-sram: TPL and U-Boot pre-relocation * * @node: node to check * Return: true if node is needed in SPL/TL, false otherwise |