aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/serial.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/serial.h')
-rw-r--r--os/hal/include/serial.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/serial.h b/os/hal/include/serial.h
index de2572f39..74969308f 100644
--- a/os/hal/include/serial.h
+++ b/os/hal/include/serial.h
@@ -99,7 +99,7 @@ typedef enum {
/**
* @brief Structure representing a serial driver.
*/
-typedef struct _SerialDriver SerialDriver;
+typedef struct SerialDriver SerialDriver;
#include "serial_lld.h"
@@ -123,7 +123,7 @@ struct SerialDriverVMT {
* @details This class extends @p BaseAsynchronousChannel by adding physical
* I/O queues.
*/
-struct _SerialDriver {
+struct SerialDriver {
/** @brief Virtual Methods Table.*/
const struct SerialDriverVMT *vmt;
_serial_driver_data