diff options
author | Damien George <damien.p.george@gmail.com> | 2015-03-04 20:35:41 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-03-04 20:35:41 +0000 |
commit | 4f94d90d4dba522a2fcf451da9c78e810782e2c0 (patch) | |
tree | b204754938c73472f322432c15f26ff6566c2cd9 /stmhal/usbd_msc_storage.c | |
parent | 6cb6947b99e57ababc70fcc0fccd59038682c885 (diff) | |
download | micropython-4f94d90d4dba522a2fcf451da9c78e810782e2c0.tar.gz micropython-4f94d90d4dba522a2fcf451da9c78e810782e2c0.zip |
stmhal: Include fatfs headers using lib/fatfs prefix.
This helps make files reusable across other ports.
Diffstat (limited to 'stmhal/usbd_msc_storage.c')
-rw-r--r-- | stmhal/usbd_msc_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/usbd_msc_storage.c b/stmhal/usbd_msc_storage.c index 03483ef093..82fa550dc9 100644 --- a/stmhal/usbd_msc_storage.c +++ b/stmhal/usbd_msc_storage.c @@ -37,8 +37,8 @@ #include "usbd_msc_storage.h" #include "py/misc.h" +#include "lib/fatfs/diskio.h" #include "storage.h" -#include "diskio.h" #include "sdcard.h" // These are needed to support removal of the medium, so that the USB drive |