diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-17 08:05:56 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-17 08:05:56 +0000 |
commit | 8ad523ae67244485a82c9d56820d4bbefd9d377c (patch) | |
tree | d003a35f0c5c4da72376ee0cd27f6739b4d840c6 /os/hal | |
parent | 79405cbe8f67a817011570d29952cf4dd139343b (diff) | |
download | ChibiOS-8ad523ae67244485a82c9d56820d4bbefd9d377c.tar.gz ChibiOS-8ad523ae67244485a82c9d56820d4bbefd9d377c.tar.bz2 ChibiOS-8ad523ae67244485a82c9d56820d4bbefd9d377c.zip |
Fixed comment.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11027 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/lib/complex/mfs/mfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/lib/complex/mfs/mfs.c b/os/hal/lib/complex/mfs/mfs.c index 55ff8d83e..f513ea4cc 100644 --- a/os/hal/lib/complex/mfs/mfs.c +++ b/os/hal/lib/complex/mfs/mfs.c @@ -672,7 +672,7 @@ static mfs_error_t mfs_try_mount(MFSDriver *mfsp) { uint32_t cnt0 = 0, cnt1 = 0;
bool warning = false;
- /* Assessing the state of the two banks by trying to mount them.*/
+ /* Assessing the state of the two banks.*/
RET_ON_ERROR(mfs_bank_get_state(mfsp, MFS_BANK_0, &sts0, &cnt0));
RET_ON_ERROR(mfs_bank_get_state(mfsp, MFS_BANK_1, &sts1, &cnt1));
|