This fixes lto type mismatch warnings in 3 functions

```sh
[Warning] pal_rtc.h@76,6: type of 'PalRtcCompareSet' does not match original declaration [-Wlto-type-mismatch]
[Warning] pal_rtc.h@73,6: type of 'PalRtcEnableCompareIrq' does not match original declaration [-Wlto-type-mismatch]
[Warning] pal_rtc.h@74,6: type of 'PalRtcDisableCompareIrq' does not match original declaration [-Wlto-type-mismatch]
```
pull/13749/head
Johnny Robeson 2020-10-12 07:02:18 -04:00
parent ad40b1b267
commit e27571fb83
1 changed files with 3 additions and 3 deletions

View File

@ -69,12 +69,12 @@ MBED_WEAK void PalRtcInit()
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcInit");
}
MBED_WEAK void PalRtcEnableCompareIrq()
MBED_WEAK void PalRtcEnableCompareIrq(uint8_t channelId)
{
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcEnableCompareIrq");
}
MBED_WEAK void PalRtcDisableCompareIrq()
MBED_WEAK void PalRtcDisableCompareIrq(uint8_t channelId)
{
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcDisableCompareIrq");
}
@ -85,7 +85,7 @@ MBED_WEAK uint32_t PalRtcCounterGet()
return 0;
}
MBED_WEAK void PalRtcCompareSet(uint32_t value)
MBED_WEAK void PalRtcCompareSet(uint8_t channelId, uint32_t value)
{
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcCompareSet");
}