ramdisk.h moved from include/fs/nuttx/ to include/nuttx/drivers.

This commit is contained in:
Gregory Nutt
2016-07-20 14:02:18 -06:00
parent 46dbbe837e
commit ee9c66186c
15 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ doing this:
- First, a ROM disk device must be created. This is done by calling
the function romdisk_register() as described in
nuttx/include/nuttx/fs/ramdisk.h. This is an OS level operation
nuttx/include/nuttx/drivers/ramdisk.h. This is an OS level operation
and must be done in the board-level logic before your application
starts.
@@ -114,7 +114,7 @@ Sample Code to Mount the ROMFS Filesystem
#include <stdlib.h>
#include <errno.h>
#include <nuttx/fs/ramdisk.h>
#include <nuttx/drivers/ramdisk.h>
#include <nuttx/zoneinfo.h>
/****************************************************************************