Skip to content

Commit 301836e

Browse files
Move error code switch down a function
1 parent e7be5a2 commit 301836e

File tree

2 files changed

+26
-40
lines changed

2 files changed

+26
-40
lines changed

src/platform/silabs/wifi/icd/WifiSleepManager.cpp

+23-37
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,12 @@ CHIP_ERROR WifiSleepManager::VerifyAndTransitionToLowPowerMode()
6464
#if SLI_SI917 // 917 SoC & NCP
6565
if (mHighPerformanceRequestCounter > 0)
6666
{
67-
VerifyOrReturnError(ConfigureHighPerformance() == SL_STATUS_OK, CHIP_ERROR_INTERNAL);
68-
return CHIP_NO_ERROR;
67+
return ConfigureHighPerformance();
6968
}
7069

7170
if (mIsCommissioningInProgress)
7271
{
73-
VerifyOrReturnError(ConfigureDTIMBasedSleep() == SL_STATUS_OK, CHIP_ERROR_INTERNAL);
74-
return CHIP_NO_ERROR;
72+
return ConfigureDTIMBasedSleep();
7573
}
7674

7775
// TODO: Clean this up when the Wi-Fi interface re-work is finished
@@ -80,63 +78,51 @@ CHIP_ERROR WifiSleepManager::VerifyAndTransitionToLowPowerMode()
8078

8179
if (!(wifiConfig.ssid[0] != 0))
8280
{
83-
VerifyOrReturnError(ConfigurePowerSave(RSI_SLEEP_MODE_8, DEEP_SLEEP_WITH_RAM_RETENTION, 0) == SL_STATUS_OK,
84-
CHIP_ERROR_INTERNAL);
85-
return CHIP_NO_ERROR;
81+
return ConfigurePowerSave(RSI_SLEEP_MODE_8, DEEP_SLEEP_WITH_RAM_RETENTION, 0);
8682
}
8783

8884
if (mCallback && mCallback->CanGoToLIBasedSleep())
8985
{
90-
VerifyOrReturnError(ConfigureLIBasedSleep() == SL_STATUS_OK, CHIP_ERROR_INTERNAL);
91-
return CHIP_NO_ERROR;
86+
return ConfigureLIBasedSleep();
9287
}
9388

94-
VerifyOrReturnError(ConfigureDTIMBasedSleep() == SL_STATUS_OK, CHIP_ERROR_INTERNAL);
89+
return ConfigureDTIMBasedSleep();
9590

9691
#elif RS911X_WIFI // rs9116
9792
VerifyOrReturnError(ConfigurePowerSave() == SL_STATUS_OK, CHIP_ERROR_INTERNAL);
98-
#endif
99-
10093
return CHIP_NO_ERROR;
94+
#endif
10195
}
10296

10397
#if SLI_SI917 // 917 SoC & NCP
104-
sl_status_t WifiSleepManager::ConfigureLIBasedSleep()
98+
CHIP_ERROR WifiSleepManager::ConfigureLIBasedSleep()
10599
{
106-
sl_status_t status = SL_STATUS_OK;
100+
VerifyOrReturnError(ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE,
101+
ICDConfigurationData::GetInstance().GetSlowPollingInterval().count()) == SL_STATUS_OK,
102+
CHIP_ERROR_INTERNAL, ChipLogError(DeviceLayer, "Failed to enable LI based sleep."));
107103

108-
status = ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE,
109-
ICDConfigurationData::GetInstance().GetSlowPollingInterval().count());
110-
VerifyOrReturnError(status == SL_STATUS_OK, status, ChipLogError(DeviceLayer, "Failed to enable LI based sleep."));
104+
VerifyOrReturnError(ConfigureBroadcastFilter(true) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
105+
ChipLogError(DeviceLayer, "Failed to configure broadcasts filter."));
111106

112-
status = ConfigureBroadcastFilter(true);
113-
VerifyOrReturnError(status == SL_STATUS_OK, status, ChipLogError(DeviceLayer, "Failed to configure broadcasts filter."));
114-
115-
return status;
107+
return CHIP_NO_ERROR;
116108
}
117109

118-
sl_status_t WifiSleepManager::ConfigureDTIMBasedSleep()
110+
CHIP_ERROR WifiSleepManager::ConfigureDTIMBasedSleep()
119111
{
120-
sl_status_t status = SL_STATUS_OK;
121-
122-
status = ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE, 0);
123-
VerifyOrReturnError(status == SL_STATUS_OK, status, ChipLogError(DeviceLayer, "Failed to enable to enable DTIM basedsleep."));
112+
VerifyOrReturnError(ConfigurePowerSave(RSI_SLEEP_MODE_2, ASSOCIATED_POWER_SAVE, 0) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
113+
ChipLogError(DeviceLayer, "Failed to enable to enable DTIM basedsleep."));
124114

125-
status = ConfigureBroadcastFilter(false);
126-
VerifyOrReturnError(status == SL_STATUS_OK, status, ChipLogError(DeviceLayer, "Failed to configure broadcast filter."));
115+
VerifyOrReturnError(ConfigureBroadcastFilter(false) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
116+
ChipLogError(DeviceLayer, "Failed to configure broadcast filter."));
127117

128-
return status;
118+
return CHIP_NO_ERROR;
129119
}
130120

131-
sl_status_t WifiSleepManager::ConfigureHighPerformance()
121+
CHIP_ERROR WifiSleepManager::ConfigureHighPerformance()
132122
{
133-
sl_status_t status = ConfigurePowerSave(RSI_ACTIVE, HIGH_PERFORMANCE, 0);
134-
if (status != SL_STATUS_OK)
135-
{
136-
ChipLogError(DeviceLayer, "Failed to set Wi-FI configuration to HighPerformance");
137-
}
138-
139-
return status;
123+
VerifyOrReturnError(ConfigurePowerSave(RSI_ACTIVE, HIGH_PERFORMANCE, 0) == SL_STATUS_OK, CHIP_ERROR_INTERNAL,
124+
ChipLogError(DeviceLayer, "Failed to set Wi-FI configuration to HighPerformance."));
125+
return CHIP_NO_ERROR;
140126
}
141127
#endif // SLI_SI917
142128

src/platform/silabs/wifi/icd/WifiSleepManager.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class WifiSleepManager
140140
* returns WifiInterface error if the configuration failed. See ConfigurePowerSave and ConfigureBroadcastFilter of the
141141
* possible errors.
142142
*/
143-
sl_status_t ConfigureLIBasedSleep();
143+
CHIP_ERROR ConfigureLIBasedSleep();
144144

145145
/**
146146
* @brief Configures the Wi-Fi Chip to go to DTIM based sleep.
@@ -150,7 +150,7 @@ class WifiSleepManager
150150
* returns WifiInterface error if the configuration failed. See ConfigurePowerSave and ConfigureBroadcastFilter of the
151151
* possible errors.
152152
*/
153-
sl_status_t ConfigureDTIMBasedSleep();
153+
CHIP_ERROR ConfigureDTIMBasedSleep();
154154

155155
/**
156156
* @brief Configures the Wi-Fi Chip to go to High Performance.
@@ -160,7 +160,7 @@ class WifiSleepManager
160160
* returns WifiInterface error if the configuration failed. See ConfigurePowerSave and ConfigureBroadcastFilter of the
161161
* possible errors.
162162
*/
163-
sl_status_t ConfigureHighPerformance();
163+
CHIP_ERROR ConfigureHighPerformance();
164164
#endif // SLI_SI917
165165

166166
static WifiSleepManager mInstance;

0 commit comments

Comments
 (0)