aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/hal_ioblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/hal_ioblock.h')
-rw-r--r--os/hal/include/hal_ioblock.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/hal/include/hal_ioblock.h b/os/hal/include/hal_ioblock.h
index 74c41034f..c720a4a8c 100644
--- a/os/hal/include/hal_ioblock.h
+++ b/os/hal/include/hal_ioblock.h
@@ -61,6 +61,7 @@ typedef struct {
* @brief @p BaseBlockDevice specific methods.
*/
#define _base_block_device_methods \
+ _base_object_methods \
/* Removable media detection.*/ \
bool (*is_inserted)(void *instance); \
/* Removable write protection detection.*/ \
@@ -84,6 +85,7 @@ typedef struct {
* @brief @p BaseBlockDevice specific data.
*/
#define _base_block_device_data \
+ _base_object_data \
/* Driver state.*/ \
blkstate_t state;
@@ -95,6 +97,8 @@ struct BaseBlockDeviceVMT {
};
/**
+ * @extends BaseObject
+ *
* @brief Base block device class.
* @details This class represents a generic, block-accessible, device.
*/