aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-02-24 08:11:13 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-02-24 08:11:13 +0000
commit5a6b1e42b07402faf42498282cb0bcf931d3b0d1 (patch)
treeaa923abf12405c8d5d744e1174a74e50fa15b241 /os/hal/include
parent54e9e0260767777475e069ca1952698774470431 (diff)
downloadChibiOS-5a6b1e42b07402faf42498282cb0bcf931d3b0d1.tar.gz
ChibiOS-5a6b1e42b07402faf42498282cb0bcf931d3b0d1.tar.bz2
ChibiOS-5a6b1e42b07402faf42498282cb0bcf931d3b0d1.zip
Fixed bug 3605794.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5306 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/io_block.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/include/io_block.h b/os/hal/include/io_block.h
index da0e97d8a..39ab6bf76 100644
--- a/os/hal/include/io_block.h
+++ b/os/hal/include/io_block.h
@@ -49,7 +49,8 @@ typedef enum {
BLK_DISCONNECTING = 4, /**< Disconnection in progress. */
BLK_READY = 5, /**< Device ready. */
BLK_READING = 6, /**< Read operation in progress. */
- BLK_WRITING = 7 /**< Write operation in progress. */
+ BLK_WRITING = 7, /**< Write operation in progress. */
+ BLK_SYNCING = 8 /**< Sync. operation in progress. */
} blkstate_t;
/**