This reverts commit 4cd97e5ad7bb63cb90d209506464fafd9f9eef8a. We should actually check the return value of sr_gpio_setval_export().
Signed-off-by: Bartosz Golaszewski <bgolaszew...@baylibre.com> --- src/hardware/baylibre-acme/protocol.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hardware/baylibre-acme/protocol.c b/src/hardware/baylibre-acme/protocol.c index 86fe020..d055255 100644 --- a/src/hardware/baylibre-acme/protocol.c +++ b/src/hardware/baylibre-acme/protocol.c @@ -414,6 +414,7 @@ SR_PRIV int bl_acme_set_power_off(const struct sr_channel_group *cg, gboolean off) { struct channel_group_priv *cgp; + int val; cgp = cg->priv; @@ -422,7 +423,7 @@ SR_PRIV int bl_acme_set_power_off(const struct sr_channel_group *cg, return SR_ERR_ARG; } - sr_gpio_setval_export(pws_gpios[cgp->index], off ? 0 : 1); + val = sr_gpio_setval_export(pws_gpios[cgp->index], off ? 0 : 1); return SR_OK; } -- 2.1.4 ------------------------------------------------------------------------------ BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with the BPMN 2 standard Learn Process modeling best practices with Bonita BPM through live exercises http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_ source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF _______________________________________________ sigrok-devel mailing list sigrok-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/sigrok-devel