[hal] Remove useless usage reporting return (#8625)

The value is not used anywhere and it also just returns 0 (was a value
from Netcomm in pre-2027).
This commit is contained in:
Gold856
2026-02-20 18:28:57 -05:00
committed by GitHub
parent 0c44e63465
commit 1806cd2d78
7 changed files with 24 additions and 31 deletions

View File

@@ -445,9 +445,9 @@ void HALSIM_CancelAllSimPeriodicCallbacks(void) {
gSimPeriodicAfter.Reset();
}
int32_t HAL_ReportUsage(const struct WPI_String* resource,
const struct WPI_String* data) {
return 0; // Do nothing for now
void HAL_ReportUsage(const struct WPI_String* resource,
const struct WPI_String* data) {
// Do nothing for now
}
} // extern "C"