File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ Devicetree
102
102
103
103
* Property names in devicetree and bindings use hyphens(``- ``) as separators, and replacing
104
104
all previously used underscores(``_ ``). For local code, you can migrate property names in
105
- bindings to use hyphens by running the ``scripts/migrate_bindings_style.py `` script.
105
+ bindings to use hyphens by running the ``scripts/utils/ migrate_bindings_style.py `` script.
106
106
107
107
108
108
DAI
Original file line number Diff line number Diff line change 17
17
# bindings base
18
18
BINDINGS_PATH = [Path ("dts/bindings/" )]
19
19
BINDINGS_PROPERTIES_AL = None
20
- with open (Path (__file__ ).parent / 'bindings_properties_allowlist.yaml' ) as f :
20
+ with open (Path (__file__ ).parents [ 1 ] / 'bindings_properties_allowlist.yaml' ) as f :
21
21
allowlist = yaml .safe_load (f .read ())
22
22
if allowlist is not None :
23
23
BINDINGS_PROPERTIES_AL = set (allowlist )
You can’t perform that action at this time.
0 commit comments