diff options
author | Oleg Girko <[email protected]> | 2020-09-20 14:53:03 +0100 |
---|---|---|
committer | Oleg Girko <[email protected]> | 2020-09-20 14:59:33 +0100 |
commit | a8589e48abb9853b0b3ccec31fc6898f6393de3e (patch) | |
tree | c62ef5545b44c48f2db3391bb1bf949ada02cf8a /kvmd/plugins/hid/serial.py | |
parent | c6b7b58f2d39371f9ec37697abf8248111693b17 (diff) |
Make kvmd compatible with libgpiod 1.2.
The singular default_val argument of gpiod.Line.request() method
was introduced in libgpiod 1.3.
For older versions of libgpiod, defailt_vals argument with list value
should be used.
This argument is available in newer versions of libgpiod as well
for compatibility.
This change is needed for Debian / Raspbian 10 that have libgpiod 1.2.
Signed-off-by: Oleg Girko <[email protected]>
Diffstat (limited to 'kvmd/plugins/hid/serial.py')
-rw-r--r-- | kvmd/plugins/hid/serial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/serial.py b/kvmd/plugins/hid/serial.py index 44ee08aa..594bf4ef 100644 --- a/kvmd/plugins/hid/serial.py +++ b/kvmd/plugins/hid/serial.py @@ -172,7 +172,7 @@ class _Gpio: assert self.__reset_line is None self.__chip = gpiod.Chip(aiogp.DEVICE_PATH) self.__reset_line = self.__chip.get_line(self.__reset_pin) - self.__reset_line.request("kvmd::hid-serial::reset", gpiod.LINE_REQ_DIR_OUT, default_val=0) + self.__reset_line.request("kvmd::hid-serial::reset", gpiod.LINE_REQ_DIR_OUT, default_vals=[0]) def close(self) -> None: if self.__chip: |