Fix build break and warnings

This commit is contained in:
Srivats P 2022-06-28 18:32:39 +05:30
parent 701a058c7d
commit 2970a292c6

View File

@ -24,12 +24,12 @@ bool initTurbo()
return true; return true;
} }
bool isTurboPort(const char* device) bool isTurboPort(const char* /*device*/)
{ {
return false; return false;
} }
AbstractPort* createTurboPort(int id, const char* device) AbstractPort* createTurboPort(int /*id*/, const char* /*device*/)
{ {
return nullptr; return nullptr;
} }
@ -38,5 +38,3 @@ bool processTurboOption(int /*opt*/)
{ {
return false; return false;
} }
#endif