aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
Diffstat (limited to 'os')
-rw-r--r--os/hal/include/serial.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/include/serial.h b/os/hal/include/serial.h
index f6b54bb5d..c24ac3994 100644
--- a/os/hal/include/serial.h
+++ b/os/hal/include/serial.h
@@ -110,15 +110,15 @@ struct SerialDriverVMT {
/**
* @p BaseChannel class inherited methods.
*/
- struct _base_channel_methods m0;
+ struct _base_channel_methods bc;
/**
* @p BaseAsynchronousChannel class inherited methods.
*/
- struct _base_asynchronous_channel_methods m1;
+ struct _base_asynchronous_channel_methods bac;
/**
* @p SerialDriver specific methods.
*/
- struct _serial_driver_methods m2;
+ struct _serial_driver_methods sd;
};
/**