Increase # of retries for findSuidSync

findSuidSync may take as long as waitForService when the system is
running slowly. Since waitForService allows 30 seconds for SEE to
initialize, increase the number of retries in findSuidSync to give
sensor the same amount of time to become available.

Bug: 136032955
Test: compile
Change-Id: Ic746783d5f65293425ccc65e6ace7a4386bb82cb
diff --git a/platform/slpi/include/chre/platform/slpi/see/see_helper.h b/platform/slpi/include/chre/platform/slpi/see/see_helper.h
index 01bd5ee..b5eb8ae 100644
--- a/platform/slpi/include/chre/platform/slpi/see/see_helper.h
+++ b/platform/slpi/include/chre/platform/slpi/see/see_helper.h
@@ -193,7 +193,7 @@
    */
   bool findSuidSync(const char *dataType, DynamicVector<sns_std_suid> *suids,
                     uint8_t minNumSuids = 1) {
-    uint32_t maxRetries = (mHaveTimedOutOnSuidLookup) ? 0 : 40;
+    uint32_t maxRetries = (mHaveTimedOutOnSuidLookup) ? 0 : 120;
     return findSuidSync(dataType, suids, minNumSuids, maxRetries,
                         Milliseconds(250) /* retryDelay */);
   }