-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dts: bindings: stepper: use hyphens instead of underscore #83842
dts: bindings: stepper: use hyphens instead of underscore #83842
Conversation
That's great! But it seems there are no changes to the DTS files. Hopefully, we didn't miss any DTS files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs migration guide entry (unless they were added post 4.0, maybe?)
Perhaps the proposed changes will be implemented in the 4.1 release. Adding a migration for version 4.1 might be more appropriate, as these property names are still present in the 4.0 release. |
This commit replaces hyphens with underscore in order to comply with devicetree standards Signed-off-by: Jilay Pandya <jilay.pandya@outlook.com>
2263c6d
458d326
to
2263c6d
Compare
doc/releases/migration-guide-4.1.rst
Outdated
@@ -279,6 +279,17 @@ Stepper | |||
:kconfig:option:`STEPPER_ADI_TMC5041_RAMP_GEN` option. | |||
* To control the velocity for :dtcompatible:`adi,tmc5041` stepper driver, use | |||
:c:func:`tmc5041_stepper_set_max_velocity` or :c:func:`tmc5041_stepper_set_ramp`. | |||
* Renamed following DeviceTree properties: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps listing them individually would be better, as there are too many of them, and this approach would align better with the existing style of the migration entry.
E.g.
* Renamed the devicetree property ``en_spreadcycle`` to ``en-spreadcycle``.
* ...
add migration guide for following renamed variables - ``en_spreadcycle`` to ``en-spreadcycle`` - ``i_scale_analog`` to ``i-scale-analog`` - ``index_optw``to ``index-otpw``` - ``ìndex_step`` to ``index-step`` - ``internal_rsense`` to ``internal-rsense`` - ``lock_gconf`` to ``lock-gconf`` - ``mstep_reg_select`` to ``mstep-reg-select`` - ``pdn_disable`` to ``pdn-disable`` - ``poscmp_enable`` to ``poscmp-enable`` - ``test_mode`` to ``test-mode`` Signed-off-by: Jilay Pandya <jilay.pandya@outlook.com>
2263c6d
to
01572d6
Compare
@kartben Done |
This commit replaces hyphens with underscore in order to comply with devicetree standards