@@ -149,18 +149,6 @@ const gchar *gpiod_test_chip_name(guint idx)
return name;
}
-gint gpiod_test_chip_num(unsigned int idx)
-{
- gint num;
-
- num = gpio_mockup_chip_num(globals.mockup, idx);
- if (num < 0)
- g_error("unable to retrieve the chip number: %s",
- g_strerror(errno));
-
- return num;
-}
-
gint gpiod_test_chip_get_value(guint chip_index, guint line_offset)
{
gint ret;
@@ -80,7 +80,6 @@ enum {
/* Wrappers around libgpiomockup helpers. */
const gchar *gpiod_test_chip_path(guint idx);
const gchar *gpiod_test_chip_name(guint idx);
-gint gpiod_test_chip_num(guint idx);
gint gpiod_test_chip_get_value(guint chip_index, guint line_offset);
void gpiod_test_chip_set_pull(guint chip_index, guint line_offset, gint pull);
This function is no longer used, remove it. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> --- tests/gpiod-test.c | 12 ------------ tests/gpiod-test.h | 1 - 2 files changed, 13 deletions(-)