treewide: apply formatting changes with clang-format
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 08:45:06 +0000 (09:45 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 08:45:06 +0000 (09:45 +0100)
Use linux kernel's .clang-format file to automatically improve the coding
style of libgpiod's C code base. We don't import the file into the
repository as it's not perfect and certain converted fragments were
rolled back because they looked better before the conversion.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
23 files changed:
lib/edge-event.c
lib/internal.c
lib/internal.h
lib/line-config.c
lib/line-settings.c
tests/gpiod-test-sim.c
tests/gpiosim/gpiosim.c
tests/gpiosim/gpiosim.h
tests/tests-chip-info.c
tests/tests-edge-event.c
tests/tests-info-event.c
tests/tests-line-config.c
tests/tests-line-info.c
tests/tests-line-request.c
tests/tests-line-settings.c
tests/tests-request-config.c
tools/gpiodetect.c
tools/gpioinfo.c
tools/gpiomon.c
tools/gpionotify.c
tools/gpioset.c
tools/tools-common.c
tools/tools-common.h

index ad8a7d15a1ff0dd6ac6f2577e77b371d0cb1aa11..fbbe4a823639fa652e4632f338f1334e2ab7e7f4 100644 (file)
@@ -131,7 +131,7 @@ gpiod_edge_event_buffer_free(struct gpiod_edge_event_buffer *buffer)
 
 GPIOD_API struct gpiod_edge_event *
 gpiod_edge_event_buffer_get_event(struct gpiod_edge_event_buffer *buffer,
-                                  unsigned long index)
+                                 unsigned long index)
 {
        if (index >= buffer->num_events) {
                errno = EINVAL;
@@ -179,9 +179,9 @@ int gpiod_edge_event_buffer_read_fd(int fd,
                event = &buffer->events[i];
 
                event->line_offset = curr->offset;
-               event->event_type = curr->id == GPIO_V2_LINE_EVENT_RISING_EDGE
-                                       ? GPIOD_EDGE_EVENT_RISING_EDGE
-                                       : GPIOD_EDGE_EVENT_FALLING_EDGE;
+               event->event_type = curr->id == GPIO_V2_LINE_EVENT_RISING_EDGE ?
+                                           GPIOD_EDGE_EVENT_RISING_EDGE :
+                                           GPIOD_EDGE_EVENT_FALLING_EDGE;
                event->timestamp = curr->timestamp_ns;
                event->global_seqno = curr->seqno;
                event->line_seqno = curr->line_seqno;
index ef87ecd01188592551c54c1312f941ee0dff75d6..5d79ff7fe0f7ee2da96a384496201e6fcec7e50d 100644 (file)
@@ -29,8 +29,8 @@ bool gpiod_check_gpiochip_device(const char *path, bool set_errno)
         * Is it a symbolic link? We have to resolve it before checking
         * the rest.
         */
-       realname = S_ISLNK(statbuf.st_mode) ? realpath(path, NULL)
-                                           : strdup(path);
+       realname = S_ISLNK(statbuf.st_mode) ? realpath(path, NULL) :
+                                             strdup(path);
        if (realname == NULL)
                goto out;
 
index eef70aa8deed13fbb9b463aa31286e52262aedd2..6646647bf82721e36d24ab6a82f3d360fd5e4024 100644 (file)
@@ -27,7 +27,8 @@ int gpiod_line_config_to_uapi(struct gpiod_line_config *config,
                              struct gpio_v2_line_request *uapi_cfg);
 struct gpiod_line_request *
 gpiod_line_request_from_uapi(struct gpio_v2_line_request *uapi_req);
-int gpiod_edge_event_buffer_read_fd(int fd, struct gpiod_edge_event_buffer *buffer,
+int gpiod_edge_event_buffer_read_fd(int fd,
+                                   struct gpiod_edge_event_buffer *buffer,
                                    size_t max_events);
 struct gpiod_info_event *
 gpiod_info_event_from_uapi(struct gpio_v2_line_info_changed *uapi_evt);
index 48ea618d7fe509efc7f9396af106ea52e415306a..436f4e8246de03049fdc78808eb5669619745efd 100644 (file)
@@ -63,8 +63,8 @@ GPIOD_API void gpiod_line_config_reset(struct gpiod_line_config *config)
        memset(config, 0, sizeof(*config));
 }
 
-static struct per_line_config *
-find_config(struct gpiod_line_config *config, unsigned int offset)
+static struct per_line_config *find_config(struct gpiod_line_config *config,
+                                          unsigned int offset)
 {
        struct per_line_config *per_line;
        size_t i;
@@ -79,11 +79,9 @@ find_config(struct gpiod_line_config *config, unsigned int offset)
        return &config->line_configs[config->num_configs++];
 }
 
-GPIOD_API int
-gpiod_line_config_add_line_settings(struct gpiod_line_config *config,
-                                   const unsigned int *offsets,
-                                   size_t num_offsets,
-                                   struct gpiod_line_settings *settings)
+GPIOD_API int gpiod_line_config_add_line_settings(
+       struct gpiod_line_config *config, const unsigned int *offsets,
+       size_t num_offsets, struct gpiod_line_settings *settings)
 {
        struct per_line_config *per_line;
        struct settings_node *node;
@@ -139,10 +137,9 @@ gpiod_line_config_get_line_settings(struct gpiod_line_config *config,
        return NULL;
 }
 
-GPIOD_API int
-gpiod_line_config_get_offsets(struct gpiod_line_config *config,
-                             size_t *num_offsets,
-                             unsigned int **offsets)
+GPIOD_API int gpiod_line_config_get_offsets(struct gpiod_line_config *config,
+                                           size_t *num_offsets,
+                                           unsigned int **offsets)
 {
        unsigned int *offs;
        size_t i;
@@ -182,7 +179,7 @@ static bool has_at_least_one_output_direction(struct gpiod_line_config *config)
 
        for (i = 0; i < config->num_configs; i++) {
                if (gpiod_line_settings_get_direction(
-                               config->line_configs[i].node->settings) ==
+                           config->line_configs[i].node->settings) ==
                    GPIOD_LINE_DIRECTION_OUTPUT)
                        return true;
        }
@@ -204,15 +201,15 @@ static void set_kernel_output_values(uint64_t *mask, uint64_t *vals,
                per_line = &config->line_configs[i];
 
                if (gpiod_line_settings_get_direction(
-                               per_line->node->settings) !=
+                           per_line->node->settings) !=
                    GPIOD_LINE_DIRECTION_OUTPUT)
                        continue;
 
                gpiod_line_mask_set_bit(mask, i);
                value = gpiod_line_settings_get_output_value(
-                                               per_line->node->settings);
-               gpiod_line_mask_assign_bit(vals, i,
-                               value == GPIOD_LINE_VALUE_ACTIVE ? 1 : 0);
+                       per_line->node->settings);
+               gpiod_line_mask_assign_bit(
+                       vals, i, value == GPIOD_LINE_VALUE_ACTIVE ? 1 : 0);
        }
 }
 
@@ -299,18 +296,18 @@ static uint64_t make_kernel_flags(struct gpiod_line_settings *settings)
        switch (gpiod_line_settings_get_edge_detection(settings)) {
        case GPIOD_LINE_EDGE_FALLING:
                flags |= (GPIO_V2_LINE_FLAG_EDGE_FALLING |
-                          GPIO_V2_LINE_FLAG_INPUT);
+                         GPIO_V2_LINE_FLAG_INPUT);
                flags &= ~GPIOD_LINE_DIRECTION_OUTPUT;
                break;
        case GPIOD_LINE_EDGE_RISING:
                flags |= (GPIO_V2_LINE_FLAG_EDGE_RISING |
-                          GPIO_V2_LINE_FLAG_INPUT);
+                         GPIO_V2_LINE_FLAG_INPUT);
                flags &= ~GPIOD_LINE_DIRECTION_OUTPUT;
                break;
        case GPIOD_LINE_EDGE_BOTH:
                flags |= (GPIO_V2_LINE_FLAG_EDGE_FALLING |
-                          GPIO_V2_LINE_FLAG_EDGE_RISING |
-                          GPIO_V2_LINE_FLAG_INPUT);
+                         GPIO_V2_LINE_FLAG_EDGE_RISING |
+                         GPIO_V2_LINE_FLAG_INPUT);
                flags &= ~GPIOD_LINE_DIRECTION_OUTPUT;
                break;
        default:
@@ -360,7 +357,7 @@ static uint64_t make_kernel_flags(struct gpiod_line_settings *settings)
 }
 
 static bool settings_equal(struct gpiod_line_settings *left,
-                        struct gpiod_line_settings *right)
+                          struct gpiod_line_settings *right)
 {
        if (gpiod_line_settings_get_direction(left) !=
            gpiod_line_settings_get_direction(right))
index f245b20d25a03e5794b804d55862b5af286fb6e0..dcd0f6bfec3a070e12d1b7af2dea763a18d64fab 100644 (file)
@@ -114,9 +114,8 @@ gpiod_line_settings_get_edge_detection(struct gpiod_line_settings *settings)
        return settings->edge_detection;
 }
 
-GPIOD_API int
-gpiod_line_settings_set_bias(struct gpiod_line_settings *settings,
-                            enum gpiod_line_bias bias)
+GPIOD_API int gpiod_line_settings_set_bias(struct gpiod_line_settings *settings,
+                                          enum gpiod_line_bias bias)
 {
        switch (bias) {
        case GPIOD_LINE_BIAS_AS_IS:
index fe5db38d9a8ad77205e1a8cad61ede5a6f2e3474..fe9f822439a37a49c8c2c8ec1ca3eb87b0238a17 100644 (file)
@@ -193,35 +193,44 @@ static void g_gpiosim_chip_class_init(GPIOSimChipClass *chip_class)
        class->dispose = g_gpiosim_chip_dispose;
        class->finalize = g_gpiosim_chip_finalize;
 
-       g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_DEV_PATH,
+       g_object_class_install_property(
+               class, G_GPIOSIM_CHIP_PROP_DEV_PATH,
                g_param_spec_string("dev-path", "Device path",
-                       "Character device filesystem path.", NULL,
-                       G_PARAM_READABLE));
+                                   "Character device filesystem path.", NULL,
+                                   G_PARAM_READABLE));
 
-       g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_NAME,
-               g_param_spec_string("name", "Chip name",
+       g_object_class_install_property(
+               class, G_GPIOSIM_CHIP_PROP_NAME,
+               g_param_spec_string(
+                       "name", "Chip name",
                        "Name of this chip device as set by the kernel.", NULL,
                        G_PARAM_READABLE));
 
-       g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_NUM_LINES,
+       g_object_class_install_property(
+               class, G_GPIOSIM_CHIP_PROP_NUM_LINES,
                g_param_spec_uint("num-lines", "Number of lines",
-                       "Number of lines this simulated chip exposes.",
-                       1, G_MAXUINT, 1,
-                       G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
+                                 "Number of lines this simulated chip exposes.",
+                                 1, G_MAXUINT, 1,
+                                 G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
 
-       g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_LABEL,
+       g_object_class_install_property(
+               class, G_GPIOSIM_CHIP_PROP_LABEL,
                g_param_spec_string("label", "Chip label",
-                       "Label of this simulated chip.", NULL,
-                       G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
+                                   "Label of this simulated chip.", NULL,
+                                   G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
 
-       g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_LINE_NAMES,
-               g_param_spec_variant("line-names", "Line names",
+       g_object_class_install_property(
+               class, G_GPIOSIM_CHIP_PROP_LINE_NAMES,
+               g_param_spec_variant(
+                       "line-names", "Line names",
                        "List of names of the lines exposed by this chip",
                        (GVariantType *)"a(us)", NULL,
                        G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
 
-       g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_HOGS,
-               g_param_spec_variant("hogs", "Line hogs",
+       g_object_class_install_property(
+               class, G_GPIOSIM_CHIP_PROP_HOGS,
+               g_param_spec_variant(
+                       "hogs", "Line hogs",
                        "List of hogged lines and their directions.",
                        (GVariantType *)"a(usi)", NULL,
                        G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
index 5a8ec888a0c61832fac689605454f4055be37eb3..9e6c635310649522bdaa82e15c2691d5e8988a51 100644 (file)
@@ -213,8 +213,7 @@ static void list_del(struct list_head *entry)
        ((type *)(__mptr - offsetof(type, member))); \
 })
 
-#define list_entry(ptr, type, member) \
-       container_of(ptr, type, member)
+#define list_entry(ptr, type, member) container_of(ptr, type, member)
 
 #define list_first_entry(ptr, type, member) \
        list_entry((ptr)->next, type, member)
@@ -222,8 +221,7 @@ static void list_del(struct list_head *entry)
 #define list_next_entry(pos, member) \
        list_entry((pos)->member.next, typeof(*(pos)), member)
 
-#define list_entry_is_head(pos, head, member) \
-       (&pos->member == (head))
+#define list_entry_is_head(pos, head, member) (&pos->member == (head))
 
 #define list_for_each_entry(pos, head, member) \
        for (pos = list_first_entry(head, typeof(*pos), member); \
@@ -334,9 +332,9 @@ again:
                                goto out_unref_module;
                        }
 
-                       ret = kmod_module_probe_insert_module(module,
-                                               KMOD_PROBE_IGNORE_LOADED,
-                                               NULL, NULL, NULL, NULL);
+                       ret = kmod_module_probe_insert_module(
+                               module, KMOD_PROBE_IGNORE_LOADED, NULL, NULL,
+                               NULL, NULL);
                        if (ret)
                                goto out_unref_module;
 
@@ -577,8 +575,7 @@ static void dev_release(struct refcount *ref)
        free(dev);
 }
 
-GPIOSIM_API struct gpiosim_dev *
-gpiosim_dev_new(struct gpiosim_ctx *ctx)
+GPIOSIM_API struct gpiosim_dev *gpiosim_dev_new(struct gpiosim_ctx *ctx)
 {
        int configfs_fd, ret, id;
        struct gpiosim_dev *dev;
@@ -855,8 +852,7 @@ static void bank_release(struct refcount *ref)
        free(bank);
 }
 
-GPIOSIM_API struct gpiosim_bank*
-gpiosim_bank_new(struct gpiosim_dev *dev)
+GPIOSIM_API struct gpiosim_bank *gpiosim_bank_new(struct gpiosim_dev *dev)
 {
        struct gpiosim_bank *bank;
        int configfs_fd, id;
index 80d437e88bf39ee7b027875e3d4213277fb0dff8..ab269006e4481d5f892a4623c3ec992ab8fdc46d 100644 (file)
@@ -37,8 +37,7 @@ struct gpiosim_ctx *gpiosim_ctx_new(void);
 struct gpiosim_ctx *gpiosim_ctx_ref(struct gpiosim_ctx *ctx);
 void gpiosim_ctx_unref(struct gpiosim_ctx *ctx);
 
-struct gpiosim_dev *
-gpiosim_dev_new(struct gpiosim_ctx *ctx);
+struct gpiosim_dev *gpiosim_dev_new(struct gpiosim_ctx *ctx);
 struct gpiosim_dev *gpiosim_dev_ref(struct gpiosim_dev *dev);
 void gpiosim_dev_unref(struct gpiosim_dev *dev);
 struct gpiosim_ctx *gpiosim_dev_get_ctx(struct gpiosim_dev *dev);
@@ -48,8 +47,7 @@ int gpiosim_dev_enable(struct gpiosim_dev *dev);
 int gpiosim_dev_disable(struct gpiosim_dev *dev);
 bool gpiosim_dev_is_live(struct gpiosim_dev *dev);
 
-struct gpiosim_bank*
-gpiosim_bank_new(struct gpiosim_dev *dev);
+struct gpiosim_bank *gpiosim_bank_new(struct gpiosim_dev *dev);
 struct gpiosim_bank *gpiosim_bank_ref(struct gpiosim_bank *bank);
 void gpiosim_bank_unref(struct gpiosim_bank *bank);
 struct gpiosim_dev *gpiosim_bank_get_dev(struct gpiosim_bank *bank);
index 85477c60310b7f8a91a9b86c325663ecb0ef1ba9..c43cfbe136ba11714f635b39abaf9f21b922a859 100644 (file)
@@ -48,4 +48,3 @@ GPIOD_TEST_CASE(get_num_lines)
 
        g_assert_cmpuint(gpiod_chip_info_get_num_lines(info), ==, 16);
 }
-
index f39da4f7ae5db5a6107ef596f24bef9028a54b33..dad6af4c65d070527c2f74e2dc09d421f8a97c18 100644 (file)
@@ -116,8 +116,7 @@ GPIOD_TEST_CASE(read_both_events)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
 
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
@@ -144,8 +143,8 @@ GPIOD_TEST_CASE(read_both_events)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_RISING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
        ts_rising = gpiod_edge_event_get_timestamp_ns(event);
 
@@ -164,8 +163,8 @@ GPIOD_TEST_CASE(read_both_events)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_FALLING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_FALLING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
        ts_falling = gpiod_edge_event_get_timestamp_ns(event);
 
@@ -193,8 +192,7 @@ GPIOD_TEST_CASE(read_rising_edge_event)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings,
                                               GPIOD_LINE_EDGE_RISING);
 
@@ -222,8 +220,8 @@ GPIOD_TEST_CASE(read_rising_edge_event)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_RISING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
 
        /* Second event. */
@@ -253,8 +251,7 @@ GPIOD_TEST_CASE(read_falling_edge_event)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings,
                                               GPIOD_LINE_EDGE_FALLING);
 
@@ -282,8 +279,8 @@ GPIOD_TEST_CASE(read_falling_edge_event)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_FALLING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_FALLING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
 
        /* No more events. */
@@ -315,8 +312,7 @@ GPIOD_TEST_CASE(read_rising_edge_event_polled)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings,
                                               GPIOD_LINE_EDGE_RISING);
 
@@ -353,8 +349,8 @@ GPIOD_TEST_CASE(read_rising_edge_event_polled)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_RISING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
 
        /* Second event. */
@@ -389,8 +385,7 @@ GPIOD_TEST_CASE(read_both_events_blocking)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
 
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
@@ -413,8 +408,8 @@ GPIOD_TEST_CASE(read_both_events_blocking)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_RISING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
 
        /* Second event. */
@@ -428,8 +423,8 @@ GPIOD_TEST_CASE(read_both_events_blocking)
        g_assert_nonnull(event);
        gpiod_test_join_thread_and_return_if_failed(thread);
 
-       g_assert_cmpint(gpiod_edge_event_get_event_type(event),
-                       ==, GPIOD_EDGE_EVENT_FALLING_EDGE);
+       g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+                       GPIOD_EDGE_EVENT_FALLING_EDGE);
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
 
        g_thread_join(thread);
@@ -469,8 +464,7 @@ GPIOD_TEST_CASE(seqno)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
 
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, offsets, 2,
@@ -543,8 +537,7 @@ GPIOD_TEST_CASE(event_copy)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
 
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
@@ -589,8 +582,7 @@ GPIOD_TEST_CASE(reading_more_events_than_the_queue_contains_doesnt_block)
        line_cfg = gpiod_test_create_line_config_or_fail();
        buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
 
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_INPUT);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
        gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
 
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
index a960ba9f496db6b27c69a7e5bf3f8ef23594f234..a0cf5b6de2c7043aa73547c632023476335c67e7 100644 (file)
@@ -199,7 +199,7 @@ GPIOD_TEST_CASE(request_reconfigure_release_events)
 }
 
 GPIOD_TEST_CASE(chip_fd_can_be_polled)
-{\
+{
        g_autoptr(GPIOSimChip) sim = g_gpiosim_chip_new("num-lines", 8, NULL);
        g_autoptr(struct_gpiod_chip) chip = NULL;
        g_autoptr(struct_gpiod_line_info) info = NULL;
index 27cc228d8524feb1e6caf64474ffd72c67f35990..5dc9022e603a401a3759a93dbb3f80e124199700 100644 (file)
@@ -110,7 +110,7 @@ GPIOD_TEST_CASE(too_many_attrs)
                                                         settings);
 
        gpiod_line_settings_set_event_clock(settings,
-                                            GPIOD_LINE_EVENT_CLOCK_REALTIME);
+                                           GPIOD_LINE_EVENT_CLOCK_REALTIME);
        offset = 7;
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
index a580b714ae7d629b4e573c8002266b60a1d511d4..38eedca44af56626b4e56d8b293bcfa5ad018828 100644 (file)
@@ -139,8 +139,7 @@ GPIOD_TEST_CASE(direction_settings)
        offset = 1;
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
-       gpiod_line_settings_set_direction(settings,
-                                         GPIOD_LINE_DIRECTION_AS_IS);
+       gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_AS_IS);
        offset = 2;
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
@@ -204,7 +203,8 @@ GPIOD_TEST_CASE(edge_detection_settings)
        offset = 0;
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
-       gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_RISING);
+       gpiod_line_settings_set_edge_detection(settings,
+                                              GPIOD_LINE_EDGE_RISING);
        offset = 1;
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
@@ -251,7 +251,8 @@ GPIOD_TEST_CASE(bias_settings)
        settings = gpiod_test_create_line_settings_or_fail();
        line_cfg = gpiod_test_create_line_config_or_fail();
 
-       gpiod_line_settings_set_direction(settings,GPIOD_LINE_DIRECTION_OUTPUT);
+       gpiod_line_settings_set_direction(settings,
+                                         GPIOD_LINE_DIRECTION_OUTPUT);
        offset = 0;
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
@@ -351,8 +352,8 @@ GPIOD_TEST_CASE(debounce_period)
        request = gpiod_test_request_lines_or_fail(chip, NULL, line_cfg);
        info = gpiod_test_get_line_info_or_fail(chip, 5);
 
-       g_assert_cmpuint(gpiod_line_info_get_debounce_period_us(info),
-                        ==, 1000);
+       g_assert_cmpuint(gpiod_line_info_get_debounce_period_us(info), ==,
+                        1000);
 }
 
 GPIOD_TEST_CASE(event_clock)
@@ -393,7 +394,7 @@ GPIOD_TEST_CASE(event_clock)
        }
 
        gpiod_test_return_if_failed();
-       
+
        info0 = gpiod_test_get_line_info_or_fail(chip, 0);
        info1 = gpiod_test_get_line_info_or_fail(chip, 1);
        info2 = gpiod_test_get_line_info_or_fail(chip, 2);
index 6cf85aba7cf746125c121fa6b04cc0afd7f159e8..2c2af0174ba8706ef7fff4bc3055d7382fd07a71 100644 (file)
@@ -156,8 +156,8 @@ GPIOD_TEST_CASE(default_output_value)
        request = gpiod_test_request_lines_or_fail(chip, NULL, line_cfg);
 
        for (i = 0; i < 4; i++)
-               g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]),
-                               ==, GPIOD_LINE_VALUE_ACTIVE);
+               g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]), ==,
+                               GPIOD_LINE_VALUE_ACTIVE);
 
        g_assert_cmpint(g_gpiosim_chip_get_value(sim, 2), ==,
                        GPIOD_LINE_VALUE_INACTIVE);
@@ -189,7 +189,8 @@ GPIOD_TEST_CASE(read_all_values)
 
        for (i = 0; i < 5; i++)
                g_gpiosim_chip_set_pull(sim, offsets[i],
-                       pulls[i] ? G_GPIOSIM_PULL_UP : G_GPIOSIM_PULL_DOWN);
+                                       pulls[i] ? G_GPIOSIM_PULL_UP :
+                                                  G_GPIOSIM_PULL_DOWN);
 
        ret = gpiod_line_request_get_values(request, values);
        g_assert_cmpint(ret, ==, 0);
@@ -224,7 +225,8 @@ GPIOD_TEST_CASE(request_multiple_values_but_read_one)
 
        for (i = 0; i < 5; i++)
                g_gpiosim_chip_set_pull(sim, offsets[i],
-                       pulls[i] ? G_GPIOSIM_PULL_UP : G_GPIOSIM_PULL_DOWN);
+                                       pulls[i] ? G_GPIOSIM_PULL_UP :
+                                                  G_GPIOSIM_PULL_DOWN);
 
        ret = gpiod_line_request_get_value(request, 5);
        g_assert_cmpint(ret, ==, 1);
@@ -265,8 +267,8 @@ GPIOD_TEST_CASE(set_all_values)
        gpiod_test_return_if_failed();
 
        for (i = 0; i < 5; i++)
-               g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]),
-                               ==, values[i]);
+               g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]), ==,
+                               values[i]);
 }
 
 GPIOD_TEST_CASE(set_values_subset_of_lines)
@@ -297,17 +299,17 @@ GPIOD_TEST_CASE(set_values_subset_of_lines)
 
        request = gpiod_test_request_lines_or_fail(chip, NULL, line_cfg);
 
-       ret = gpiod_line_request_set_values_subset(request, 3,
-                                                  offsets_to_set, values);
+       ret = gpiod_line_request_set_values_subset(request, 3, offsets_to_set,
+                                                  values);
        g_assert_cmpint(ret, ==, 0);
        gpiod_test_return_if_failed();
 
-       g_assert_cmpint(g_gpiosim_chip_get_value(sim, 0),
-                       ==, GPIOD_LINE_VALUE_ACTIVE);
-       g_assert_cmpint(g_gpiosim_chip_get_value(sim, 1),
-                       ==, GPIOD_LINE_VALUE_INACTIVE);
-       g_assert_cmpint(g_gpiosim_chip_get_value(sim, 3),
-                       ==, GPIOD_LINE_VALUE_ACTIVE);
+       g_assert_cmpint(g_gpiosim_chip_get_value(sim, 0), ==,
+                       GPIOD_LINE_VALUE_ACTIVE);
+       g_assert_cmpint(g_gpiosim_chip_get_value(sim, 1), ==,
+                       GPIOD_LINE_VALUE_INACTIVE);
+       g_assert_cmpint(g_gpiosim_chip_get_value(sim, 3), ==,
+                       GPIOD_LINE_VALUE_ACTIVE);
 }
 
 GPIOD_TEST_CASE(set_line_after_requesting)
@@ -358,8 +360,7 @@ GPIOD_TEST_CASE(request_survives_parent_chip)
 
        gpiod_line_settings_set_direction(settings,
                                          GPIOD_LINE_DIRECTION_OUTPUT);
-       gpiod_line_settings_set_output_value(settings,
-                                            GPIOD_LINE_VALUE_ACTIVE);
+       gpiod_line_settings_set_output_value(settings, GPIOD_LINE_VALUE_ACTIVE);
        gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
                                                         settings);
 
index bdf932df3c2abea8403464ca2cf475a2bf66257a..e6c027731074f6cba54db49c229261aaade405a2 100644 (file)
@@ -26,7 +26,7 @@ GPIOD_TEST_CASE(default_config)
                        GPIOD_LINE_DRIVE_PUSH_PULL);
        g_assert_false(gpiod_line_settings_get_active_low(settings));
        g_assert_cmpuint(gpiod_line_settings_get_debounce_period_us(settings),
-                       ==, 0);
+                        ==, 0);
        g_assert_cmpint(gpiod_line_settings_get_event_clock(settings), ==,
                        GPIOD_LINE_EVENT_CLOCK_MONOTONIC);
        g_assert_cmpint(gpiod_line_settings_get_output_value(settings), ==,
@@ -110,26 +110,22 @@ GPIOD_TEST_CASE(set_bias)
 
        settings = gpiod_test_create_line_settings_or_fail();
 
-       ret = gpiod_line_settings_set_bias(settings,
-                                          GPIOD_LINE_BIAS_DISABLED);
+       ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_DISABLED);
        g_assert_cmpint(ret, ==, 0);
        g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
                        GPIOD_LINE_BIAS_DISABLED);
 
-       ret = gpiod_line_settings_set_bias(settings,
-                                          GPIOD_LINE_BIAS_AS_IS);
+       ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_AS_IS);
        g_assert_cmpint(ret, ==, 0);
        g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
                        GPIOD_LINE_BIAS_AS_IS);
 
-       ret = gpiod_line_settings_set_bias(settings,
-                                          GPIOD_LINE_BIAS_PULL_DOWN);
+       ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_PULL_DOWN);
        g_assert_cmpint(ret, ==, 0);
        g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
                        GPIOD_LINE_BIAS_PULL_DOWN);
 
-       ret = gpiod_line_settings_set_bias(settings,
-                                          GPIOD_LINE_BIAS_PULL_UP);
+       ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_PULL_UP);
        g_assert_cmpint(ret, ==, 0);
        g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
                        GPIOD_LINE_BIAS_PULL_UP);
@@ -312,7 +308,7 @@ GPIOD_TEST_CASE(reset_settings)
                        GPIOD_LINE_DRIVE_PUSH_PULL);
        g_assert_false(gpiod_line_settings_get_active_low(settings));
        g_assert_cmpuint(gpiod_line_settings_get_debounce_period_us(settings),
-                       ==, 0);
+                        ==, 0);
        g_assert_cmpint(gpiod_line_settings_get_event_clock(settings), ==,
                        GPIOD_LINE_EVENT_CLOCK_MONOTONIC);
        g_assert_cmpint(gpiod_line_settings_get_output_value(settings), ==,
index f26c05a2a89b3b122469f44121e857899bcd6124..71fccde020af6135331601cfd7d2503a423908f5 100644 (file)
@@ -16,8 +16,8 @@ GPIOD_TEST_CASE(default_config)
        config = gpiod_test_create_request_config_or_fail();
 
        g_assert_null(gpiod_request_config_get_consumer(config));
-       g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config),
-                        ==, 0);
+       g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config), ==,
+                        0);
 }
 
 GPIOD_TEST_CASE(set_consumer)
@@ -27,8 +27,8 @@ GPIOD_TEST_CASE(set_consumer)
        config = gpiod_test_create_request_config_or_fail();
 
        gpiod_request_config_set_consumer(config, "foobar");
-       g_assert_cmpstr(gpiod_request_config_get_consumer(config),
-                       ==, "foobar");
+       g_assert_cmpstr(gpiod_request_config_get_consumer(config), ==,
+                       "foobar");
 }
 
 GPIOD_TEST_CASE(set_event_buffer_size)
@@ -38,6 +38,6 @@ GPIOD_TEST_CASE(set_event_buffer_size)
        config = gpiod_test_create_request_config_or_fail();
 
        gpiod_request_config_set_event_buffer_size(config, 128);
-       g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config),
-                        ==, 128);
+       g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config), ==,
+                        128);
 }
index 671ed6a68bc53b474d6b7f83baae1e7df29590a2..f0211dab2f7b25dbec8a0707cf866ed376813d60 100644 (file)
@@ -74,8 +74,7 @@ static int print_chip_info(const char *path)
        if (!info)
                die_perror("unable to read info for '%s'", path);
 
-       printf("%s [%s] (%zu lines)\n",
-              gpiod_chip_info_get_name(info),
+       printf("%s [%s] (%zu lines)\n", gpiod_chip_info_get_name(info),
               gpiod_chip_info_get_label(info),
               gpiod_chip_info_get_num_lines(info));
 
index 592f4a6a4e0912fb9941fa0811d01b6e6176353e..1ec7f63f00e4b078cb7136f4ea3bd49b6b76b96f 100644 (file)
@@ -100,7 +100,7 @@ static int parse_config(int argc, char **argv, struct config *cfg)
  * Does not die on non-unique lines.
  */
 static bool resolve_line(struct line_resolver *resolver,
-                         struct gpiod_line_info *info, int chip_num)
+                        struct gpiod_line_info *info, int chip_num)
 {
        struct resolved_line *line;
        bool resolved = false;
@@ -114,8 +114,7 @@ static bool resolve_line(struct line_resolver *resolver,
                line = &resolver->lines[i];
 
                /* already resolved by offset? */
-               if (line->resolved &&
-                   (line->offset == offset) &&
+               if (line->resolved && (line->offset == offset) &&
                    (line->chip_num == chip_num)) {
                        resolved = true;
                }
@@ -187,9 +186,8 @@ static void list_lines(struct line_resolver *resolver, struct gpiod_chip *chip,
        if ((chip_num == 0) && (cfg->chip_id && !cfg->by_name))
                resolve_lines_by_offset(resolver, num_lines);
 
-       for (offset = 0;
-            ((offset < num_lines) &&
-             !(resolver->num_lines && resolve_done(resolver)));
+       for (offset = 0; ((offset < num_lines) &&
+                         !(resolver->num_lines && resolve_done(resolver)));
             offset++) {
                info = gpiod_chip_get_line_info(chip, offset);
                if (!info)
@@ -238,7 +236,7 @@ int main(int argc, char **argv)
                cfg.by_name = true;
 
        num_chips = chip_paths(cfg.chip_id, &paths);
-       if (cfg.chip_id  && (num_chips == 0))
+       if (cfg.chip_id && (num_chips == 0))
                die("cannot find GPIO chip character device '%s'", cfg.chip_id);
 
        resolver = resolver_init(argc, argv, num_chips, cfg.strict,
index dc157df6cd7ccbe35eac15c7b74b71f97342e115..ba457e4e0d18f3b05d893c6e1d0f06db428d1f1a 100644 (file)
@@ -210,7 +210,7 @@ static int parse_config(int argc, char **argv, struct config *cfg)
                else
                        cfg->event_clock = GPIOD_LINE_EVENT_CLOCK_MONOTONIC;
        } else if ((cfg->event_clock == GPIOD_LINE_EVENT_CLOCK_REALTIME) &&
-                (cfg->timestamp_fmt == 0)) {
+                  (cfg->timestamp_fmt == 0)) {
                cfg->timestamp_fmt = 1;
        }
 
@@ -234,8 +234,8 @@ static void print_banner(int num_lines, char **lines)
 }
 
 static void event_print_formatted(struct gpiod_edge_event *event,
-                       struct line_resolver *resolver, int chip_num,
-                       struct config *cfg)
+                                 struct line_resolver *resolver, int chip_num,
+                                 struct config *cfg)
 {
        const char *lname, *prev, *curr;
        unsigned int offset;
@@ -381,8 +381,8 @@ int main(int argc, char **argv)
                gpiod_line_settings_set_active_low(settings, true);
 
        if (cfg.debounce_period_us)
-               gpiod_line_settings_set_debounce_period_us(settings,
-                                       cfg.debounce_period_us);
+               gpiod_line_settings_set_debounce_period_us(
+                       settings, cfg.debounce_period_us);
 
        gpiod_line_settings_set_event_clock(settings, cfg.event_clock);
        gpiod_line_settings_set_edge_detection(settings, cfg.edges);
@@ -484,4 +484,3 @@ done:
 
        return EXIT_SUCCESS;
 }
-
index 2367495f468d43234ce6327230ee22ca1416d084..a0976f7224246e11e21bb80ae731369a904fa577 100644 (file)
@@ -216,7 +216,7 @@ static uint64_t monotonic_to_realtime(uint64_t evtime)
        clock_gettime(CLOCK_REALTIME, &ts);
        after = ts.tv_nsec + ((uint64_t)ts.tv_sec) * 1000000000;
 
-       evtime += (after/2 - mono + before/2);
+       evtime += (after / 2 - mono + before / 2);
 
        return evtime;
 }
@@ -230,7 +230,7 @@ static void event_print_formatted(struct gpiod_info_event *event,
        unsigned int offset;
        uint64_t evtime;
        int evtype;
-       char  fmt;
+       char fmt;
 
        info = gpiod_info_event_get_line_info(event);
        evtime = gpiod_info_event_get_timestamp_ns(event);
@@ -310,8 +310,8 @@ end:
 }
 
 static void event_print_human_readable(struct gpiod_info_event *event,
-                       struct line_resolver *resolver, int chip_num,
-                       struct config *cfg)
+                                      struct line_resolver *resolver,
+                                      int chip_num, struct config *cfg)
 {
        struct gpiod_line_info *info;
        unsigned int offset;
@@ -397,7 +397,7 @@ int main(int argc, char **argv)
                for (j = 0; j < resolver->num_lines; j++)
                        if ((resolver->lines[j].chip_num == i) &&
                            !gpiod_chip_watch_line_info(
-                                       chip, resolver->lines[j].offset))
+                                   chip, resolver->lines[j].offset))
                                die_perror("unable to watch line on chip '%s'",
                                           resolver->chips[i].path);
 
index a32c8944cb3114f48eb905ddb8c2f47257efa51c..698dba383ed5f3e94e93eafc3020614153b5aedb 100644 (file)
@@ -278,7 +278,6 @@ static bool parse_line_values(int num_lines, char **lvs, char **lines,
                                *value = '\0';
                                value++;
                        }
-
                }
 
                if (!value) {
@@ -352,8 +351,8 @@ static void wait_fd(int fd)
  * offset and values are scratch pads for working.
  */
 static void apply_values(struct gpiod_line_request **requests,
-                        struct line_resolver *resolver,
-                        unsigned int *offsets, enum gpiod_line_value *values)
+                        struct line_resolver *resolver, unsigned int *offsets,
+                        enum gpiod_line_value *values)
 {
        int i;
 
@@ -380,9 +379,10 @@ static void toggle_all_lines(struct line_resolver *resolver)
  * offset and values are scratch pads for working.
  */
 static void toggle_sequence(int toggles, unsigned int *toggle_periods,
-                        struct gpiod_line_request **requests,
-                        struct line_resolver *resolver,
-                        unsigned int *offsets, enum gpiod_line_value *values)
+                           struct gpiod_line_request **requests,
+                           struct line_resolver *resolver,
+                           unsigned int *offsets,
+                           enum gpiod_line_value *values)
 {
        int i = 0;
 
@@ -537,7 +537,7 @@ static bool valid_lines(struct line_resolver *resolver, int num_lines,
                }
        }
 
-       return  ret;
+       return ret;
 }
 
 static void print_interactive_help(void)
@@ -639,8 +639,7 @@ static char *complete_line_id(const char *text, int state)
                id = completion_context->lines[idx].id;
                idx++;
 
-               if ((strncmp(id, text, len) == 0) &&
-                   (!in_line_buffer(id)))
+               if ((strncmp(id, text, len) == 0) && (!in_line_buffer(id)))
                        return strdup(id);
        }
 
@@ -708,16 +707,14 @@ static char **tab_completion(const char *text, int start, int end)
        rl_completion_append_character = ' ';
 
        for (cmd_start = 0;
-            isspace(rl_line_buffer[cmd_start]) && cmd_start < end;
-            cmd_start++)
+            isspace(rl_line_buffer[cmd_start]) && cmd_start < end; cmd_start++)
                ;
 
        if (cmd_start == start)
                matches = rl_completion_matches(text, complete_command);
 
        for (cmd_end = cmd_start + 1;
-            !isspace(rl_line_buffer[cmd_end]) && cmd_end < end;
-            cmd_end++)
+            !isspace(rl_line_buffer[cmd_end]) && cmd_end < end; cmd_end++)
                ;
 
        len = cmd_end - cmd_start;
@@ -731,7 +728,8 @@ static char **tab_completion(const char *text, int start, int end)
        }
 
        if ((len == 3 && strncmp("get ", &rl_line_buffer[cmd_start], 4) == 0) ||
-           (len == 6 && strncmp("toggle ", &rl_line_buffer[cmd_start], 7) == 0))
+           (len == 6 &&
+            strncmp("toggle ", &rl_line_buffer[cmd_start], 7) == 0))
                matches = rl_completion_matches(text, complete_line_id);
 
        return matches;
@@ -740,9 +738,9 @@ static char **tab_completion(const char *text, int start, int end)
 #define PROMPT "gpioset> "
 
 static void interact(struct gpiod_line_request **requests,
-                   struct line_resolver *resolver,
-                   char **lines, unsigned int *offsets,
-                   enum gpiod_line_value *values, bool unquoted)
+                    struct line_resolver *resolver, char **lines,
+                    unsigned int *offsets, enum gpiod_line_value *values,
+                    bool unquoted)
 {
        int num_words, num_lines, max_words, period_us, i;
        char *line, **words, *line_buf;
@@ -788,8 +786,8 @@ static void interact(struct gpiod_line_request **requests,
                                print_all_line_values(resolver, unquoted);
                        else if (parse_line_ids(num_lines, &words[1], lines) &&
                                 valid_lines(resolver, num_lines, lines))
-                               print_line_values(resolver, num_lines,
-                                                 lines, unquoted);
+                               print_line_values(resolver, num_lines, lines,
+                                                 unquoted);
                        goto cmd_ok;
                }
                if (strcmp(words[0], "set") == 0) {
@@ -844,8 +842,7 @@ static void interact(struct gpiod_line_request **requests,
                }
 
                printf("unknown command: '%s'\n", words[0]);
-               printf("Try the 'help' command\n")
-                       ;
+               printf("Try the 'help' command\n");
 
 cmd_ok:
                for (i = 0; isspace(line[i]); i++)
@@ -932,16 +929,16 @@ int main(int argc, char **argv)
                die_perror("unable to allocate the line config structure");
 
        for (i = 0; i < resolver->num_chips; i++) {
-               num_lines = get_line_offsets_and_values(resolver, i,
-                                                       offsets, values);
+               num_lines = get_line_offsets_and_values(resolver, i, offsets,
+                                                       values);
 
                gpiod_line_config_reset(line_cfg);
                for (j = 0; j < num_lines; j++) {
                        gpiod_line_settings_set_output_value(settings,
                                                             values[j]);
 
-                       ret = gpiod_line_config_add_line_settings(line_cfg,
-                                        &offsets[j], 1, settings);
+                       ret = gpiod_line_config_add_line_settings(
+                               line_cfg, &offsets[j], 1, settings);
                        if (ret)
                                die_perror("unable to add line settings");
                }
@@ -1007,4 +1004,3 @@ int main(int argc, char **argv)
 
        return EXIT_SUCCESS;
 }
-
index 6dbcf57e75bfd1bd241479e4abaa29ac56413488..4477ac8f29dd4f335120c93bb46f99937f8899bf 100644 (file)
@@ -214,10 +214,10 @@ void print_event_time(uint64_t evtime, int format)
                        tz = "Z";
                }
                strftime(tbuf, TIME_BUFFER_SIZE, "%FT%T", &t);
-               printf("%s.%09"PRIu64"%s", tbuf, evtime % 1000000000, tz);
+               printf("%s.%09" PRIu64 "%s", tbuf, evtime % 1000000000, tz);
        } else {
-               printf("%"PRIu64".%09"PRIu64,
-                      evtime / 1000000000, evtime % 1000000000);
+               printf("%" PRIu64 ".%09" PRIu64, evtime / 1000000000,
+                      evtime % 1000000000);
        }
 }
 
@@ -380,8 +380,7 @@ static int chip_dir_filter(const struct dirent *entry)
        if (asprintf(&path, "/dev/%s", entry->d_name) < 0)
                return 0;
 
-       if ((lstat(path, &sb) == 0) &&
-           (!S_ISLNK(sb.st_mode)) &&
+       if ((lstat(path, &sb) == 0) && (!S_ISLNK(sb.st_mode)) &&
            gpiod_is_gpiochip_device(path))
                ret = 1;
 
@@ -482,8 +481,7 @@ int all_chip_paths(char ***paths_ptr)
 }
 
 static bool resolve_line(struct line_resolver *resolver,
-                         struct gpiod_line_info *info,
-                         int chip_num)
+                        struct gpiod_line_info *info, int chip_num)
 {
        struct resolved_line *line;
        bool resolved = false;
@@ -495,8 +493,7 @@ static bool resolve_line(struct line_resolver *resolver,
        for (i = 0; i < resolver->num_lines; i++) {
                line = &resolver->lines[i];
                /* already resolved by offset? */
-               if (line->resolved &&
-                   (line->offset == offset) &&
+               if (line->resolved && (line->offset == offset) &&
                    (line->chip_num == chip_num)) {
                        line->info = info;
                        resolver->num_found++;
@@ -548,7 +545,6 @@ bool resolve_lines_by_offset(struct line_resolver *resolver,
        return used;
 }
 
-
 bool resolve_done(struct line_resolver *resolver)
 {
        return (!resolver->strict &&
@@ -588,7 +584,8 @@ struct line_resolver *resolver_init(int num_lines, char **lines, int num_chips,
 }
 
 struct line_resolver *resolve_lines(int num_lines, char **lines,
-                       const char *chip_id, bool strict, bool by_name)
+                                   const char *chip_id, bool strict,
+                                   bool by_name)
 {
        struct gpiod_chip_info *chip_info;
        struct gpiod_line_info *line_info;
@@ -602,7 +599,7 @@ struct line_resolver *resolve_lines(int num_lines, char **lines,
                by_name = true;
 
        num_chips = chip_paths(chip_id, &paths);
-       if (chip_id  && (num_chips == 0))
+       if (chip_id && (num_chips == 0))
                die("cannot find GPIO chip character device '%s'", chip_id);
 
        resolver = resolver_init(num_lines, lines, num_chips, strict, by_name);
@@ -666,7 +663,7 @@ void validate_resolution(struct line_resolver *resolver, const char *chip_id)
        bool valid = true;
        int i, j;
 
-       for (i = 0 ; i < resolver->num_lines; i++) {
+       for (i = 0; i < resolver->num_lines; i++) {
                line = &resolver->lines[i];
                if (line->resolved) {
                        for (j = 0; j < i; j++) {
@@ -712,8 +709,8 @@ void free_line_resolver(struct line_resolver *resolver)
        free(resolver);
 }
 
-int get_line_offsets_and_values(struct line_resolver *resolver,
-                               int chip_num, unsigned int *offsets,
+int get_line_offsets_and_values(struct line_resolver *resolver, int chip_num,
+                               unsigned int *offsets,
                                enum gpiod_line_value *values)
 {
        struct resolved_line *line;
@@ -738,8 +735,8 @@ const char *get_chip_name(struct line_resolver *resolver, int chip_num)
        return gpiod_chip_info_get_name(resolver->chips[chip_num].info);
 }
 
-const char *get_line_name(struct line_resolver *resolver,
-                         int chip_num, unsigned int offset)
+const char *get_line_name(struct line_resolver *resolver, int chip_num,
+                         unsigned int offset)
 {
        struct resolved_line *line;
        int i;
@@ -748,7 +745,8 @@ const char *get_line_name(struct line_resolver *resolver,
                line = &resolver->lines[i];
                if (line->info && (line->offset == offset) &&
                    (line->chip_num == chip_num))
-                       return gpiod_line_info_get_name(resolver->lines[i].info);
+                       return gpiod_line_info_get_name(
+                               resolver->lines[i].info);
        }
 
        return 0;
index d467197e4a00dc5dcdfbc928faf0fc16a50f9419..efbeeb82fcab55e15b2e195297ff1b670bd7846f 100644 (file)
@@ -102,7 +102,8 @@ bool chip_path_lookup(const char *id, char **path_ptr);
 int chip_paths(const char *id, char ***paths_ptr);
 int all_chip_paths(char ***paths_ptr);
 struct line_resolver *resolve_lines(int num_lines, char **lines,
-               const char *chip_id, bool strict, bool by_name);
+                                   const char *chip_id, bool strict,
+                                   bool by_name);
 struct line_resolver *resolver_init(int num_lines, char **lines, int num_chips,
                                    bool strict, bool by_name);
 bool resolve_lines_by_offset(struct line_resolver *resolver,