Private
Public Access
2
0

common.hpp: Removed platform selection methods.

Signed-off-by: Henry Bruce <henry.bruce@intel.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Henry Bruce
2015-08-20 11:59:07 -07:00
committed by Brendan Le Foll
parent c03d746544
commit b841d6c75c

View File

@@ -227,40 +227,6 @@ hasSubPlatform()
}
/**
* Select main platform for platform info calls.
*
* @return bool true if main platform is available, false otherwise
*/
inline bool
selectMainPlatform()
{
return static_cast<bool>(mraa_select_main_platform());
}
/**
* Select sub platform for platform info calls.
*
* @return mraa_boolean_t true if sub platform is available, 0 otherwise
*/
inline bool
selectSubPlatform()
{
return static_cast<bool>(mraa_select_sub_platform());
}
/**
* Check if sub platform is currently available and selected for platform info calls.
*
* @return bool true if sub platform is selected, false otherwise
*/
inline bool
isSubPlatformSelected()
{
return static_cast<bool>(mraa_is_sub_platform_selected());
}
/**
* Check if pin or bus id includes sub platform mask.