treewide: add missing commas to enums and struct definitions
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 09:35:53 +0000 (10:35 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 9 Dec 2022 09:16:11 +0000 (10:16 +0100)
The code is not consistent with regard to following the last element in
enums and struct definitions with a comma. Unless the last element is
guaranteed not to change (e.g. '{ }', or NULL), follow it with a comma
treewide to avoid churn in git when adding new values.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/cxx/edge-event.cpp
bindings/cxx/gpiodcxx/edge-event.hpp
bindings/cxx/gpiodcxx/info-event.hpp
bindings/cxx/gpiodcxx/line.hpp
bindings/cxx/info-event.cpp
bindings/cxx/line-info.cpp
bindings/cxx/line-settings.cpp
bindings/cxx/line.cpp
bindings/cxx/tests/gpiosim.cpp
bindings/cxx/tests/gpiosim.hpp
include/gpiod.h

index 9d1227367da4ca65ac00828c9c015ae351f27523..4de57a524c5ca879015403f9507b377ba878fb72 100644 (file)
@@ -13,12 +13,12 @@ namespace {
 
 const ::std::map<int, edge_event::event_type> event_type_mapping = {
        { GPIOD_EDGE_EVENT_RISING_EDGE,         edge_event::event_type::RISING_EDGE },
-       { GPIOD_EDGE_EVENT_FALLING_EDGE,        edge_event::event_type::FALLING_EDGE }
+       { GPIOD_EDGE_EVENT_FALLING_EDGE,        edge_event::event_type::FALLING_EDGE },
 };
 
 const ::std::map<edge_event::event_type, ::std::string> event_type_names = {
        { edge_event::event_type::RISING_EDGE,          "RISING_EDGE" },
-       { edge_event::event_type::FALLING_EDGE,         "FALLING_EDGE" }
+       { edge_event::event_type::FALLING_EDGE,         "FALLING_EDGE" },
 };
 
 } /* namespace */
index 9a50629d3725391e6bf1c2d17498c553e4117f18..648165c191eb470bf4d3304375fa1f638522b905 100644 (file)
@@ -41,7 +41,7 @@ public:
        {
                RISING_EDGE = 1,
                /**< This is a rising edge event. */
-               FALLING_EDGE
+               FALLING_EDGE,
                /**< This is falling edge event. */
        };
 
index 1e99896117e4198849f0768a248a1559e640cb46..6f3c0b95b53e8eae35240e9661e14bc1698569c2 100644 (file)
@@ -44,7 +44,7 @@ public:
                /**< Line has been requested. */
                LINE_RELEASED,
                /**< Previously requested line has been released. */
-               LINE_CONFIG_CHANGED
+               LINE_CONFIG_CHANGED,
                /**< Line configuration has changed. */
        };
 
index a8aae5716aeeb9af3ab61e3716e17a5858779c11..5d0752a05855924207fbcb15ce19b71a61ee4efc 100644 (file)
@@ -100,7 +100,7 @@ enum class direction
        /**< Request the line(s), but don't change current direction. */
        INPUT,
        /**< Direction is input - we're reading the state of a GPIO line. */
-       OUTPUT
+       OUTPUT,
        /**< Direction is output - we're driving the GPIO line. */
 };
 
@@ -115,7 +115,7 @@ enum class edge
        /**< Line detects rising edge events. */
        FALLING,
        /**< Line detect falling edge events. */
-       BOTH
+       BOTH,
        /**< Line detects both rising and falling edge events. */
 };
 
@@ -132,7 +132,7 @@ enum class bias
        /**< The internal bias is disabled. */
        PULL_UP,
        /**< The internal pull-up bias is enabled. */
-       PULL_DOWN
+       PULL_DOWN,
        /**< The internal pull-down bias is enabled. */
 };
 
@@ -145,7 +145,7 @@ enum class drive
        /**< Drive setting is push-pull. */
        OPEN_DRAIN,
        /**< Line output is open-drain. */
-       OPEN_SOURCE
+       OPEN_SOURCE,
        /**< Line output is open-source. */
 };
 
index f70940832e8c3dad0eb5333de7131597714556bd..37a3fedb639f4776eb94d2cc8c7cebc9ffb8611c 100644 (file)
@@ -13,13 +13,13 @@ namespace {
 const ::std::map<int, info_event::event_type> event_type_mapping = {
        { GPIOD_INFO_EVENT_LINE_REQUESTED,      info_event::event_type::LINE_REQUESTED },
        { GPIOD_INFO_EVENT_LINE_RELEASED,       info_event::event_type::LINE_RELEASED },
-       { GPIOD_INFO_EVENT_LINE_CONFIG_CHANGED, info_event::event_type::LINE_CONFIG_CHANGED }
+       { GPIOD_INFO_EVENT_LINE_CONFIG_CHANGED, info_event::event_type::LINE_CONFIG_CHANGED },
 };
 
 const ::std::map<info_event::event_type, ::std::string> event_type_names = {
        { info_event::event_type::LINE_REQUESTED,       "LINE_REQUESTED" },
        { info_event::event_type::LINE_RELEASED,        "LINE_RELEASED" },
-       { info_event::event_type::LINE_CONFIG_CHANGED,  "LINE_CONFIG_CHANGED" }
+       { info_event::event_type::LINE_CONFIG_CHANGED,  "LINE_CONFIG_CHANGED" },
 };
 
 } /* namespace */
index 5eb2a3f480c7d012112c4f0a1283c7c66e949b90..4e70b29b25ceb3763b508859b151791b7d63b6a7 100644 (file)
@@ -13,33 +13,33 @@ namespace {
 
 const ::std::map<int, line::direction> direction_mapping = {
        { GPIOD_LINE_DIRECTION_INPUT,           line::direction::INPUT },
-       { GPIOD_LINE_DIRECTION_OUTPUT,          line::direction::OUTPUT }
+       { GPIOD_LINE_DIRECTION_OUTPUT,          line::direction::OUTPUT },
 };
 
 const ::std::map<int, line::bias> bias_mapping = {
        { GPIOD_LINE_BIAS_UNKNOWN,              line::bias::UNKNOWN },
        { GPIOD_LINE_BIAS_DISABLED,             line::bias::DISABLED },
        { GPIOD_LINE_BIAS_PULL_UP,              line::bias::PULL_UP },
-       { GPIOD_LINE_BIAS_PULL_DOWN,            line::bias::PULL_DOWN }
+       { GPIOD_LINE_BIAS_PULL_DOWN,            line::bias::PULL_DOWN },
 };
 
 const ::std::map<int, line::drive> drive_mapping = {
        { GPIOD_LINE_DRIVE_PUSH_PULL,           line::drive::PUSH_PULL },
        { GPIOD_LINE_DRIVE_OPEN_DRAIN,          line::drive::OPEN_DRAIN },
-       { GPIOD_LINE_DRIVE_OPEN_SOURCE,         line::drive::OPEN_SOURCE }
+       { GPIOD_LINE_DRIVE_OPEN_SOURCE,         line::drive::OPEN_SOURCE },
 };
 
 const ::std::map<int, line::edge> edge_mapping = {
        { GPIOD_LINE_EDGE_NONE,                 line::edge::NONE },
        { GPIOD_LINE_EDGE_RISING,               line::edge::RISING },
        { GPIOD_LINE_EDGE_FALLING,              line::edge::FALLING },
-       { GPIOD_LINE_EDGE_BOTH,                 line::edge::BOTH }
+       { GPIOD_LINE_EDGE_BOTH,                 line::edge::BOTH },
 };
 
 const ::std::map<int, line::clock> clock_mapping = {
        { GPIOD_LINE_CLOCK_MONOTONIC,           line::clock::MONOTONIC },
        { GPIOD_LINE_CLOCK_REALTIME,            line::clock::REALTIME },
-       { GPIOD_LINE_CLOCK_HTE,                 line::clock::HTE }
+       { GPIOD_LINE_CLOCK_HTE,                 line::clock::HTE },
 };
 
 } /* namespace */
index 58860dbfd2f68467f72bd63935b6d0a3320de78f..7d3d6a56dbd1232c77a153df62ce0e5c59de0a0d 100644 (file)
@@ -25,7 +25,7 @@ make_reverse_maping(const ::std::map<cxx_enum_type, c_enum_type>& mapping)
 const ::std::map<line::direction, gpiod_line_direction> direction_mapping = {
        { line::direction::AS_IS,       GPIOD_LINE_DIRECTION_AS_IS },
        { line::direction::INPUT,       GPIOD_LINE_DIRECTION_INPUT },
-       { line::direction::OUTPUT,      GPIOD_LINE_DIRECTION_OUTPUT }
+       { line::direction::OUTPUT,      GPIOD_LINE_DIRECTION_OUTPUT },
 };
 
 const ::std::map<gpiod_line_direction, line::direction>
@@ -35,7 +35,7 @@ const ::std::map<line::edge, gpiod_line_edge> edge_mapping = {
        { line::edge::NONE,             GPIOD_LINE_EDGE_NONE },
        { line::edge::FALLING,          GPIOD_LINE_EDGE_FALLING },
        { line::edge::RISING,           GPIOD_LINE_EDGE_RISING },
-       { line::edge::BOTH,             GPIOD_LINE_EDGE_BOTH }
+       { line::edge::BOTH,             GPIOD_LINE_EDGE_BOTH },
 };
 
 const ::std::map<gpiod_line_edge, line::edge> reverse_edge_mapping = make_reverse_maping(edge_mapping);
@@ -44,7 +44,7 @@ const ::std::map<line::bias, gpiod_line_bias> bias_mapping = {
        { line::bias::AS_IS,            GPIOD_LINE_BIAS_AS_IS },
        { line::bias::DISABLED,         GPIOD_LINE_BIAS_DISABLED },
        { line::bias::PULL_UP,          GPIOD_LINE_BIAS_PULL_UP },
-       { line::bias::PULL_DOWN,        GPIOD_LINE_BIAS_PULL_DOWN }
+       { line::bias::PULL_DOWN,        GPIOD_LINE_BIAS_PULL_DOWN },
 };
 
 const ::std::map<gpiod_line_bias, line::bias> reverse_bias_mapping = make_reverse_maping(bias_mapping);
@@ -52,7 +52,7 @@ const ::std::map<gpiod_line_bias, line::bias> reverse_bias_mapping = make_revers
 const ::std::map<line::drive, gpiod_line_drive> drive_mapping = {
        { line::drive::PUSH_PULL,       GPIOD_LINE_DRIVE_PUSH_PULL },
        { line::drive::OPEN_DRAIN,      GPIOD_LINE_DRIVE_OPEN_DRAIN },
-       { line::drive::OPEN_SOURCE,     GPIOD_LINE_DRIVE_OPEN_SOURCE }
+       { line::drive::OPEN_SOURCE,     GPIOD_LINE_DRIVE_OPEN_SOURCE },
 };
 
 const ::std::map<gpiod_line_drive, line::drive> reverse_drive_mapping = make_reverse_maping(drive_mapping);
@@ -60,7 +60,7 @@ const ::std::map<gpiod_line_drive, line::drive> reverse_drive_mapping = make_rev
 const ::std::map<line::clock, gpiod_line_clock> clock_mapping = {
        { line::clock::MONOTONIC,       GPIOD_LINE_CLOCK_MONOTONIC },
        { line::clock::REALTIME,        GPIOD_LINE_CLOCK_REALTIME },
-       { line::clock::HTE,             GPIOD_LINE_CLOCK_HTE }
+       { line::clock::HTE,             GPIOD_LINE_CLOCK_HTE },
 };
 
 const ::std::map<gpiod_line_clock, line::clock>
@@ -68,7 +68,7 @@ reverse_clock_mapping = make_reverse_maping(clock_mapping);
 
 const ::std::map<line::value, gpiod_line_value> value_mapping = {
        { line::value::INACTIVE,        GPIOD_LINE_VALUE_INACTIVE },
-       { line::value::ACTIVE,          GPIOD_LINE_VALUE_ACTIVE }
+       { line::value::ACTIVE,          GPIOD_LINE_VALUE_ACTIVE },
 };
 
 const ::std::map<gpiod_line_value, line::value> reverse_value_mapping = make_reverse_maping(value_mapping);
index c2750a8a008fb6034a7ba81a9815ef1b191ebaba..d99e8fa9e5291cd757d9878099e08543f2c07101 100644 (file)
@@ -13,13 +13,13 @@ namespace {
 
 const ::std::map<line::value, ::std::string> value_names = {
        { line::value::INACTIVE,        "INACTIVE" },
-       { line::value::ACTIVE,          "ACTIVE" }
+       { line::value::ACTIVE,          "ACTIVE" },
 };
 
 const ::std::map<line::direction, ::std::string> direction_names = {
        { line::direction::AS_IS,       "AS_IS" },
        { line::direction::INPUT,       "INPUT" },
-       { line::direction::OUTPUT,      "OUTPUT" }
+       { line::direction::OUTPUT,      "OUTPUT" },
 };
 
 const ::std::map<line::bias, ::std::string> bias_names = {
@@ -27,26 +27,26 @@ const ::std::map<line::bias, ::std::string> bias_names = {
        { line::bias::UNKNOWN,          "UNKNOWN" },
        { line::bias::DISABLED,         "DISABLED" },
        { line::bias::PULL_UP,          "PULL_UP" },
-       { line::bias::PULL_DOWN,        "PULL_DOWN" }
+       { line::bias::PULL_DOWN,        "PULL_DOWN" },
 };
 
 const ::std::map<line::drive, ::std::string> drive_names = {
        { line::drive::PUSH_PULL,       "PUSH_PULL" },
        { line::drive::OPEN_DRAIN,      "OPEN_DRAIN" },
-       { line::drive::OPEN_SOURCE,     "OPEN_SOURCE" }
+       { line::drive::OPEN_SOURCE,     "OPEN_SOURCE" },
 };
 
 const ::std::map<line::edge, ::std::string> edge_names = {
        { line::edge::NONE,             "NONE" },
        { line::edge::RISING,           "RISING_EDGE" },
        { line::edge::FALLING,          "FALLING_EDGE" },
-       { line::edge::BOTH,             "BOTH_EDGES" }
+       { line::edge::BOTH,             "BOTH_EDGES" },
 };
 
 const ::std::map<line::clock, ::std::string> clock_names = {
        { line::clock::MONOTONIC,       "MONOTONIC" },
        { line::clock::REALTIME,        "REALTIME" },
-       { line::clock::HTE,             "HTE" }
+       { line::clock::HTE,             "HTE" },
 };
 
 } /* namespace */
index a36c59e6356be752e8952c17572959ee64cac6a3..7267e6d5c8f3af7e40ef07108e6334750dfff820 100644 (file)
@@ -14,18 +14,18 @@ namespace {
 
 const ::std::map<chip::pull, gpiosim_pull> pull_mapping = {
        { chip::pull::PULL_UP,          GPIOSIM_PULL_UP },
-       { chip::pull::PULL_DOWN,        GPIOSIM_PULL_DOWN }
+       { chip::pull::PULL_DOWN,        GPIOSIM_PULL_DOWN },
 };
 
 const ::std::map<chip_builder::direction, gpiosim_direction> hog_dir_mapping = {
        { chip_builder::direction::INPUT,       GPIOSIM_DIRECTION_INPUT },
        { chip_builder::direction::OUTPUT_HIGH, GPIOSIM_DIRECTION_OUTPUT_HIGH },
-       { chip_builder::direction::OUTPUT_LOW,  GPIOSIM_DIRECTION_OUTPUT_LOW }
+       { chip_builder::direction::OUTPUT_LOW,  GPIOSIM_DIRECTION_OUTPUT_LOW },
 };
 
 const ::std::map<gpiosim_value, chip::value> value_mapping = {
        { GPIOSIM_VALUE_INACTIVE,       chip::value::INACTIVE },
-       { GPIOSIM_VALUE_ACTIVE,         chip::value::ACTIVE }
+       { GPIOSIM_VALUE_ACTIVE,         chip::value::ACTIVE },
 };
 
 template<class gpiosim_type, void free_func(gpiosim_type*)> struct deleter
index 1dab191549888d2bcade959515c7f6bab5e7e637..320ae96aaccb86b9aea77fed6e2e2c0aabeb7919 100644 (file)
@@ -16,12 +16,12 @@ class chip
 public:
        enum class pull {
                PULL_UP = 1,
-               PULL_DOWN
+               PULL_DOWN,
        };
 
        enum class value {
                INACTIVE = 0,
-               ACTIVE = 1
+               ACTIVE = 1,
        };
 
        chip(const chip& other) = delete;
@@ -54,7 +54,7 @@ public:
        enum class direction {
                INPUT = 1,
                OUTPUT_HIGH,
-               OUTPUT_LOW
+               OUTPUT_LOW,
        };
 
        chip_builder();
index 2ad028dc3dabaa65c3b577e825a17c67bb281f99..a76c311c0ddf18eaed7f8ba283db4b2f2f09ce44 100644 (file)
@@ -261,7 +261,7 @@ enum gpiod_line_direction {
        /**< Request the line(s), but don't change direction. */
        GPIOD_LINE_DIRECTION_INPUT,
        /**< Direction is input - for reading the value of an externally driven GPIO line. */
-       GPIOD_LINE_DIRECTION_OUTPUT
+       GPIOD_LINE_DIRECTION_OUTPUT,
        /**< Direction is output - for driving the GPIO line. */
 };
 
@@ -275,7 +275,7 @@ enum gpiod_line_edge {
        /**< Line detects rising edge events. */
        GPIOD_LINE_EDGE_FALLING,
        /**< Line detects falling edge events. */
-       GPIOD_LINE_EDGE_BOTH
+       GPIOD_LINE_EDGE_BOTH,
        /**< Line detects both rising and falling edge events. */
 };
 
@@ -291,7 +291,7 @@ enum gpiod_line_bias {
        /**< The internal bias is disabled. */
        GPIOD_LINE_BIAS_PULL_UP,
        /**< The internal pull-up bias is enabled. */
-       GPIOD_LINE_BIAS_PULL_DOWN
+       GPIOD_LINE_BIAS_PULL_DOWN,
        /**< The internal pull-down bias is enabled. */
 };
 
@@ -303,7 +303,7 @@ enum gpiod_line_drive {
        /**< Drive setting is push-pull. */
        GPIOD_LINE_DRIVE_OPEN_DRAIN,
        /**< Line output is open-drain. */
-       GPIOD_LINE_DRIVE_OPEN_SOURCE
+       GPIOD_LINE_DRIVE_OPEN_SOURCE,
        /**< Line output is open-source. */
 };
 
@@ -494,7 +494,7 @@ enum gpiod_info_event_type {
        /**< Line has been requested. */
        GPIOD_INFO_EVENT_LINE_RELEASED,
        /**< Previously requested line has been released. */
-       GPIOD_INFO_EVENT_LINE_CONFIG_CHANGED
+       GPIOD_INFO_EVENT_LINE_CONFIG_CHANGED,
        /**< Line configuration has changed. */
 };
 
@@ -1050,7 +1050,7 @@ int gpiod_line_request_read_edge_events(struct gpiod_line_request *request,
 enum gpiod_edge_event_type {
        GPIOD_EDGE_EVENT_RISING_EDGE = 1,
        /**< Rising edge event. */
-       GPIOD_EDGE_EVENT_FALLING_EDGE
+       GPIOD_EDGE_EVENT_FALLING_EDGE,
        /**< Falling edge event. */
 };