core: chip: drop the unneeded prefix from a static function
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 16 Dec 2022 09:02:09 +0000 (10:02 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 16 Dec 2022 13:58:58 +0000 (14:58 +0100)
Rename the static function that uses the word 'chip' twice in its name.
Just remove the prefix as we don't export this symbol.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
lib/chip.c

index e0fb309daec134b403fb0e45e632966be33e6e87..6f122148240e77098cf130bb0e12d435a5b2e68e 100644 (file)
@@ -60,7 +60,7 @@ GPIOD_API void gpiod_chip_close(struct gpiod_chip *chip)
        free(chip);
 }
 
-static int chip_read_chip_info(int fd, struct gpiochip_info *info)
+static int read_chip_info(int fd, struct gpiochip_info *info)
 {
        int ret;
 
@@ -78,7 +78,7 @@ GPIOD_API struct gpiod_chip_info *gpiod_chip_get_info(struct gpiod_chip *chip)
        struct gpiochip_info info;
        int ret;
 
-       ret = chip_read_chip_info(chip->fd, &info);
+       ret = read_chip_info(chip->fd, &info);
        if (ret < 0)
                return NULL;
 
@@ -164,7 +164,7 @@ GPIOD_API int gpiod_chip_get_line_offset_from_name(struct gpiod_chip *chip,
        unsigned int offset;
        int ret;
 
-       ret = chip_read_chip_info(chip->fd, &chinfo);
+       ret = read_chip_info(chip->fd, &chinfo);
        if (ret < 0)
                return -1;