From: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> This routine should logically be part of line attributes. Move it out of the misc line section. Signed-off-by: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> --- include/gpiod.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/gpiod.h b/include/gpiod.h index b28cc92..c6e0b65 100644 --- a/include/gpiod.h +++ b/include/gpiod.h @@ -431,6 +431,13 @@ bool gpiod_line_is_open_source(struct gpiod_line *line) GPIOD_API; */ int gpiod_line_update(struct gpiod_line *line) GPIOD_API; +/** + * @brief Get the handle to the GPIO chip controlling this line. + * @param line The GPIO line object. + * @return Pointer to the GPIO chip handle controlling this line. + */ +struct gpiod_chip *gpiod_line_get_chip(struct gpiod_line *line) GPIOD_API; + /** * @} * @@ -1093,13 +1100,6 @@ struct gpiod_line *gpiod_line_find(const char *name) GPIOD_API; */ void gpiod_line_close_chip(struct gpiod_line *line) GPIOD_API; -/** - * @brief Get the handle to the GPIO chip controlling this line. - * @param line The GPIO line object. - * @return Pointer to the GPIO chip handle controlling this line. - */ -struct gpiod_chip *gpiod_line_get_chip(struct gpiod_line *line) GPIOD_API; - /** * @} * -- 2.29.1