bindings: python: move gpiod_ChipIsClosed() to the top of gpiodmodule.c
authorBartosz Golaszewski <bartekgola@gmail.com>
Fri, 13 Jul 2018 16:34:50 +0000 (18:34 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Fri, 13 Jul 2018 16:34:50 +0000 (18:34 +0200)
Unlike the other two helpers that are still declared at the top of the
source file - this routine doesn't need to know any gpiod-specific type
so move it up and remove the prototype.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/gpiodmodule.c

index 0d10814527ad1d2f78902fc968addc25715b14bd..60f39c60b4f9256609a25c5ac24d33e8f2c03378 100644 (file)
@@ -46,7 +46,6 @@ typedef struct {
 static gpiod_LineBulkObject *gpiod_LineToLineBulk(gpiod_LineObject *line);
 static gpiod_LineObject *gpiod_MakeLineObject(gpiod_ChipObject *owner,
                                              struct gpiod_line *line);
-static bool gpiod_ChipIsClosed(gpiod_ChipObject *chip);
 
 enum {
        gpiod_LINE_REQ_DIR_AS_IS = 1,
@@ -78,6 +77,17 @@ enum {
        gpiod_FALLING_EDGE,
 };
 
+static bool gpiod_ChipIsClosed(gpiod_ChipObject *chip)
+{
+       if (!chip->chip) {
+               PyErr_SetString(PyExc_ValueError,
+                               "I/O operation on closed file");
+               return true;
+       }
+
+       return false;
+}
+
 static PyObject *gpiod_CallMethodPyArgs(PyObject *obj, const char *method,
                                        PyObject *args, PyObject *kwds)
 {
@@ -1342,17 +1352,6 @@ static PyObject *gpiod_Chip_exit(gpiod_ChipObject *chip)
        return PyObject_CallMethod((PyObject *)chip, "close", "");
 }
 
-static bool gpiod_ChipIsClosed(gpiod_ChipObject *chip)
-{
-       if (!chip->chip) {
-               PyErr_SetString(PyExc_ValueError,
-                               "I/O operation on closed file");
-               return true;
-       }
-
-       return false;
-}
-
 PyDoc_STRVAR(gpiod_Chip_name_doc,
 "Get the name of the GPIO chip");