gas: remove thresholdContext param from getSample()

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll 2014-11-04 19:13:21 +00:00
parent b1da85f437
commit 3bea0233bc
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ Gas::getSampledData (thresholdContext* ctx) {
} }
int int
Gas::getSample (thresholdContext* ctx) { Gas::getSample () {
return mraa_aio_read (m_gasCtx); return mraa_aio_read (m_gasCtx);
} }

View File

@ -86,7 +86,7 @@ class Gas {
* *
* @param ctx threshold context * @param ctx threshold context
*/ */
virtual int getSample (thresholdContext* ctx); virtual int getSample ();
/** /**
* *