common/gpio: use util::safe_ioctl (#29624)

use util::safe_ioctl
old-commit-hash: 7270c64872
beeps
Dean Lee 2 years ago committed by GitHub
parent e128aedc63
commit 5385263422
  1. 2
      common/gpio.cc

@ -70,7 +70,7 @@ int gpiochip_get_ro_value_fd(const char* consumer_label, int gpiochiop_id, int p
rq.eventflags = GPIOEVENT_REQUEST_BOTH_EDGES; rq.eventflags = GPIOEVENT_REQUEST_BOTH_EDGES;
strncpy(rq.consumer_label, consumer_label, std::size(rq.consumer_label) - 1); strncpy(rq.consumer_label, consumer_label, std::size(rq.consumer_label) - 1);
int ret = ioctl(fd, GPIO_GET_LINEEVENT_IOCTL, &rq); int ret = util::safe_ioctl(fd, GPIO_GET_LINEEVENT_IOCTL, &rq);
if (ret == -1) { if (ret == -1) {
LOGE("Unable to get line event from ioctl : %s", strerror(errno)); LOGE("Unable to get line event from ioctl : %s", strerror(errno));
close(fd); close(fd);

Loading…
Cancel
Save