git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15208 27425a3e-05d8-49a3-a47f-9c15f0e5edd8

This commit is contained in:
Giovanni Di Sirio 2021-12-06 08:33:49 +00:00
parent 7273b02b26
commit d619356b25
1 changed files with 6 additions and 4 deletions

View File

@ -112,15 +112,17 @@ static bool fs_ready = false;
/* VFS related. */
/*===========================================================================*/
#if VFS_CFG_ENABLE_DRV_FATFS == TRUE
/* VFS FatFS driver object representing the root directory.*/
static vfs_fatfs_driver_c root_driver;
#endif
/* VFS overlay driver object representing the root directory.*/
static vfs_overlay_driver_c root_overlay_driver;
/* VFS streams driver object representing the /dev directory.*/
static vfs_streams_driver_c vfs_dev;
/* VFS FatFS driver object representing the root directory.*/
static vfs_fatfs_driver_c root_driver;
vfs_driver_c *vfs_root = (vfs_driver_c *)&root_overlay_driver;
static NullStream nullstream;
@ -276,7 +278,7 @@ int main(void) {
#else
/* Initializing an overlay VFS object as a root, no overlaid driver,
no need for a name.*/
drvOverlayObjectInit(&root_driver, NULL, "");
drvOverlayObjectInit(&root_overlay_driver, NULL, "");
#endif
/* Registering a streams VFS driver on the VFS overlay root as "/dev".*/