The SAMA5D4-EK NSH and NxWM configurations now have the auto-mounter configured to automatically mount the FAT file system on HSMCI0 at /mnt/sdcard

This commit is contained in:
Gregory Nutt
2014-07-29 16:36:15 -06:00
parent 3d49eadc80
commit a826adb679
4 changed files with 25 additions and 12 deletions
+3 -3
View File
@@ -161,7 +161,7 @@ extern "C"
* lower - Persistent board configuration data
*
* Returned Value:
* A void* handle. The only use for this handle is with auto_uninitialize().
* A void* handle. The only use for this handle is with automount_uninitialize().
* NULL is returned on any failure.
*
****************************************************************************/
@@ -169,7 +169,7 @@ extern "C"
FAR void *automount_initialize(FAR const struct automount_lower_s *lower);
/****************************************************************************
* Name: auto_uninitialize
* Name: automount_uninitialize
*
* Description:
* Stop the automounter and free resources that it used. NOTE that the
@@ -183,7 +183,7 @@ FAR void *automount_initialize(FAR const struct automount_lower_s *lower);
*
****************************************************************************/
void auto_uninitialize(FAR void *handle);
void automount_uninitialize(FAR void *handle);
#undef EXTERN
#ifdef __cplusplus