aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-02 10:13:20 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-02 10:13:20 +0000
commit8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e (patch)
tree25419dcebe5e79da65a2fe6e84aa13764efb705a /src
parente1301550bccc67c25fa9581da3b18cfefc4c601c (diff)
downloadChibiOS-8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e.tar.gz
ChibiOS-8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e.tar.bz2
ChibiOS-8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e.zip
Initial documentation for channels.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@932 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r--src/include/channels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/channels.h b/src/include/channels.h
index deb01f433..a534de9b7 100644
--- a/src/include/channels.h
+++ b/src/include/channels.h
@@ -54,7 +54,7 @@ struct _base_channel_data {
* @details This class represents a generic, synchronous, byte-wide,
* I/O channel.
*/
-typedef struct _base_channel {
+typedef struct {
struct _base_channel_vmt *vmt; /**< Virtual Methods Table. */
struct _base_channel_data d0; /**< Class data. */
} BaseChannel;