aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
Diffstat (limited to 'os')
-rw-r--r--os/hal/include/io_channel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/io_channel.h b/os/hal/include/io_channel.h
index 5573184f5..726a2040a 100644
--- a/os/hal/include/io_channel.h
+++ b/os/hal/include/io_channel.h
@@ -107,7 +107,7 @@ typedef struct {
*
* @api
*/
-#define chnPutTimeout(ip, b, time) ((ip)->vmt->put(ip, b, time))
+#define chnPutTimeout(ip, b, time) ((ip)->vmt->putt(ip, b, time))
/**
* @brief Channel blocking byte read with timeout.
@@ -127,7 +127,7 @@ typedef struct {
*
* @api
*/
-#define chnGetTimeout(ip, time) ((ip)->vmt->get(ip, time))
+#define chnGetTimeout(ip, time) ((ip)->vmt->gett(ip, time))
/**
* @brief Channel blocking write.