summaryrefslogtreecommitdiff
path: root/Documentation/driver-api/reset.rst
AgeCommit message (Collapse)Author
7 daysDocumentation: reset: Use fwnode_reset_simple_xlate() in the kernel-doc ↵Karl Mehltretter
directive reset.rst asks drivers/reset/core.c for of_reset_simple_xlate(). Commit 9035073d0ef1 ("reset: convert reset core to using firmware nodes") replaced it with fwnode_reset_simple_xlate(). Since then the directive finds nothing for it and the default translation helper is missing from the rendered controller API section. Use the current name. Fixes: 9035073d0ef1 ("reset: convert reset core to using firmware nodes") Assisted-by: LLM Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <20260905085211.40286-1-kmehltretter@gmail.com>
2026-03-09reset: convert the core API to using firmware nodesBartosz Golaszewski
In order to simplify the commit converting the internals of reset core to using firmware nodes, first convert the user-facing API. Modify the signature of the core consumer functions but leave the specialized wrappers as is to avoid modifying users for now. No functional change intended. Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
2025-11-20Documentation: reset: Remove reset_controller_add_lookup()Yue Haibing
Commit 205b261463ff ("reset: remove legacy reset lookup code") removed this api, so update the document. Signed-off-by: Yue Haibing <yuehaibing@huawei.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
2020-12-08docs: add a reset controller chapter to the driver API docsPhilipp Zabel
Add initial reset controller API documentation. This is mostly intended to describe the concepts to users of the consumer API, and to tie the kerneldoc comments we already have into the driver API documentation. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Reviewed-by: Amjad Ouled-Ameur <aouledameur@baylibre.fr> Link: https://lore.kernel.org/r/20201201115754.1713-1-p.zabel@pengutronix.de Signed-off-by: Jonathan Corbet <corbet@lwn.net>