-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Labels
EnhancementChanges/Updates/Additions to existing featuresChanges/Updates/Additions to existing featuresGood first issueGood for a first time contributor to takeGood for a first time contributor to takeplatform: STM32ST Micro STM32ST Micro STM32
Description
Summary
There are a variety of nodes on boards/st with status = "disabled"; while this is the default inherited from .dtsi files and hence these nodes should just not be present.
For instance:
zephyr/boards/st/nucleo_h7s3l8/nucleo_h7s3l8.dts
Lines 73 to 79 in 8251c15
| &clk_lsi { | |
| status = "disabled"; | |
| }; | |
| &clk_hsi48 { | |
| status = "disabled"; | |
| }; |
Describe the solution you'd like
Systematically check occurences:
- remove when not required
- add a comment there's a good reason to keep it (valid configuration, but conflicting with another node being prioritised, ...)
Alternatives
No response
Additional Context
No response
Metadata
Metadata
Labels
EnhancementChanges/Updates/Additions to existing featuresChanges/Updates/Additions to existing featuresGood first issueGood for a first time contributor to takeGood for a first time contributor to takeplatform: STM32ST Micro STM32ST Micro STM32