From 0d1164787e76a5b1014e7b761c7498e8a2ef9ece Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 19 Jun 2012 20:58:16 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4308 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/io_channel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os') 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. -- cgit v1.2.3