Private
Public Access
2
0

spi: fix headers

Missed in earlier commits

Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
This commit is contained in:
Thomas Ingleby
2014-05-21 13:07:50 +01:00
parent 546157a9ab
commit 0813271423
2 changed files with 4 additions and 4 deletions

View File

@@ -35,8 +35,8 @@ namespace maa {
class Spi {
public:
Spi() {
m_spi = maa_spi_init();
Spi(int bus) {
m_spi = maa_spi_init(bus);
}
~Spi() {
maa_spi_stop(m_spi);