Private
Public Access
2
0

gpio: fix compiler warning with blank return

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-05-13 21:57:28 +00:00
parent ef225dbe26
commit b7d38a22e8

View File

@@ -140,7 +140,7 @@ maa_gpio_interrupt_handler(void* arg)
} else {
// we must have got an error code so die nicely
close(dev->isr_value_fp);
return;
return NULL;
}
}
}