tests: don't use 'index' as a name for variables
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 7 Aug 2019 17:12:40 +0000 (19:12 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 7 Aug 2019 17:12:40 +0000 (19:12 +0200)
The standard library provides index() as a function. Don't use it as
a name for variables, arguments, etc.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tests/gpiod-test.c
tests/gpiod-test.h

index 7fc874416e521030325e2a417984260083652e34..1d962aad07ac6defbfc79a7144219b78c31ec309 100644 (file)
@@ -129,11 +129,11 @@ void _gpiod_test_register(_GpiodTestCase *test)
        globals.tests = g_list_append(globals.tests, test);
 }
 
-const gchar *gpiod_test_chip_path(guint index)
+const gchar *gpiod_test_chip_path(guint idx)
 {
        const gchar *path;
 
-       path = gpio_mockup_chip_path(globals.mockup, index);
+       path = gpio_mockup_chip_path(globals.mockup, idx);
        if (!path)
                g_error("unable to retrieve the chip path: %s",
                        g_strerror(errno));
@@ -141,11 +141,11 @@ const gchar *gpiod_test_chip_path(guint index)
        return path;
 }
 
-const gchar *gpiod_test_chip_name(guint index)
+const gchar *gpiod_test_chip_name(guint idx)
 {
        const gchar *name;
 
-       name = gpio_mockup_chip_name(globals.mockup, index);
+       name = gpio_mockup_chip_name(globals.mockup, idx);
        if (!name)
                g_error("unable to retrieve the chip name: %s",
                        g_strerror(errno));
@@ -153,11 +153,11 @@ const gchar *gpiod_test_chip_name(guint index)
        return name;
 }
 
-gint gpiod_test_chip_num(unsigned int index)
+gint gpiod_test_chip_num(unsigned int idx)
 {
        gint num;
 
-       num = gpio_mockup_chip_num(globals.mockup, index);
+       num = gpio_mockup_chip_num(globals.mockup, idx);
        if (num < 0)
                g_error("unable to retrieve the chip number: %s",
                        g_strerror(errno));
index 8047964a00bd25c474f063186bc12b92762473d9..ebeda41d4f0834d1ca6fe4e673680c5d683d8c1a 100644 (file)
@@ -84,9 +84,9 @@ enum {
        } while (0)
 
 /* Wrappers around libgpiomockup helpers. */
-const gchar *gpiod_test_chip_path(guint index);
-const gchar *gpiod_test_chip_name(guint index);
-gint gpiod_test_chip_num(guint index);
+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);