From: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> This helper was supposed to be used together with global line lookup which will soon be removed so drop this one too. Signed-off-by: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> --- include/gpiod.h | 8 -------- lib/helpers.c | 7 ------- 2 files changed, 15 deletions(-) diff --git a/include/gpiod.h b/include/gpiod.h index c6e0b65..2e8323a 100644 --- a/include/gpiod.h +++ b/include/gpiod.h @@ -1092,14 +1092,6 @@ gpiod_line_get(const char *device, unsigned int offset) GPIOD_API; */ struct gpiod_line *gpiod_line_find(const char *name) GPIOD_API; -/** - * @brief Close a GPIO chip owning this line and release all resources. - * @param line GPIO line object - * - * After this function returns, the line must no longer be used. - */ -void gpiod_line_close_chip(struct gpiod_line *line) GPIOD_API; - /** * @} * diff --git a/lib/helpers.c b/lib/helpers.c index 3ec6c96..b3050ca 100644 --- a/lib/helpers.c +++ b/lib/helpers.c @@ -424,10 +424,3 @@ out: return NULL; } - -void gpiod_line_close_chip(struct gpiod_line *line) -{ - struct gpiod_chip *chip = gpiod_line_get_chip(line); - - gpiod_chip_close(chip); -} -- 2.29.1