bindings: python: fix GCC8 warnings due to function pointer casting
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 11 Jul 2019 09:41:21 +0000 (11:41 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 11 Jul 2019 09:57:13 +0000 (11:57 +0200)
commit583cf823d31636a9b5ca9eb1b4d3587a134a7c79
tree62ba1539848b27a5d0abcaf4a64757bf8741d84d
parentdbc056eac0598db852dc86c8e40468b7a40efd8f
bindings: python: fix GCC8 warnings due to function pointer casting

GCC8 has added a new warning heuristic to detect invalid function
casts. This causes a lot of warnings when building libgpiod python
bindings.

Let's use Py_UNUSED where applicable to make function prototypes match
that of PyCFunction. For keyword functions, let's cast them to a
function pointer taking no arguments before casting them again to
PyCFunction. This may not be the best solution but it has to do for
the moment.

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