diff options
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/gpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/src/gpt.c b/os/hal/src/gpt.c index 9b7c0d9a6..e37e1a5d8 100644 --- a/os/hal/src/gpt.c +++ b/os/hal/src/gpt.c @@ -129,14 +129,14 @@ void gptStop(GPTDriver *gptp) { *
* @api
*/
-void stm32_gptChangeInterval(GPTDriver *gptp, gptcnt_t interval) {
+void gptChangeInterval(GPTDriver *gptp, gptcnt_t interval) {
chDbgCheck(gptp != NULL, "gptChangeInterval");
chSysLock();
chDbgAssert(gptp->state == GPT_CONTINUOUS,
"gptChangeInterval(), #1", "invalid state");
- stm32_gptChangeIntervalI(gptp, interval);
+ gptChangeIntervalI(gptp, interval);
chSysUnlock();
}
|