diff options
| author | Tom Rini <[email protected]> | 2025-11-02 14:08:12 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-10 11:30:56 -0600 |
| commit | 6d04828b45202312c93892b4be834809c795d4d2 (patch) | |
| tree | f4438b2287c85b2479109ff4ecdff1f80ec53000 /include | |
| parent | d3b691c9d32260a262382f464bae62ad16d82225 (diff) | |
dm: Remove pre-schema tag support
Support for using "u-boot,dm-..." rather than "bootph-..." has been
deprecated since February 2023. Any platforms using this have had a
console message saying to migrate by 2023.07. Go and remove all support
here now, for the v2026.01 release.
The results of this change that aren't clear from the above are that we
still have a checkpatch.pl error message, and document in
doc/develop/spl.rst that they have been migrated since 2023. We also
change the key2dtsi.py tool to use the correct bootph phase rather than
the legacy phase.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-generic/global_data.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 506ee51cdb0..745d2c3a966 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -671,10 +671,10 @@ enum gd_flags { * @GD_FLG_FDT_CHANGED: Device tree change has been detected by tests */ GD_FLG_FDT_CHANGED = 0x100000, - /** - * @GD_FLG_OF_TAG_MIGRATE: Device tree has old u-boot,dm- tags + /* + * @GD_FLG_OF_TAG_MIGRATE: Previously had the value of 0x200000 but was + * freed when migration support was removed. */ - GD_FLG_OF_TAG_MIGRATE = 0x200000, /** * @GD_FLG_DM_DEAD: Driver model is not accessible. This can be set when * the memory used to holds its tables has been mapped out. |
