!fixup "sm7325-common: gps: Fix __unused usages"

Change-Id: Id06e61fac6fc351005f9e6b868e0162df91aa388
This commit is contained in:
Nolen Johnson 2025-01-20 02:24:22 -05:00
parent f673bedfbc
commit 4059544efb
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ public:
}
inline void sendMsg(const LocMsg *msg) { getMsgTask()->sendMsg(msg); }
inline bool checkFeatureStatus(int* fids,
LocFeatureStatus* status, uint32_t idCount, bool directQwesCall = false __unused) const {
LocFeatureStatus* status, uint32_t idCount, bool __unused directQwesCall = false) const {
return mLocApiProxy->checkFeatureStatus(fids, status, idCount, directQwesCall);
}
static loc_gps_cfg_s_type mGps_conf;

View File

@ -141,7 +141,7 @@ public:
uint32_t center __unused, uint32_t right __unused, uint8_t gloFrequency __unused) { return 0.0; }
inline virtual float getGeoidalSeparation(double latitude __unused, double longitude __unused) { return 0.0; }
inline virtual bool checkFeatureStatus(int* fids __unused, LocFeatureStatus* status __unused,
uint32_t idCount __unused, bool directQwesCall = false __unused) {return false;}
uint32_t idCount __unused, bool __unused directQwesCall = false) {return false;}
};
class LocApiBase {