4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 10:53:30 +08:00

modified the comments of block device geometry structure, to tell everyone the unit of block_size is byte.

This commit is contained in:
pangweishen 2014-11-04 10:16:54 +08:00
parent 086b87f23f
commit 675fa48281

View File

@ -844,7 +844,7 @@ struct rt_device_blk_geometry
{
rt_uint32_t sector_count; /**< count of sectors */
rt_uint32_t bytes_per_sector; /**< number of bytes per sector */
rt_uint32_t block_size; /**< size to erase one block */
rt_uint32_t block_size; /**< number of bytes to erase one block */
};
/**