Driver related prototypes moved out of include/nuttx/fs/fs.h and into new include/drivers/drivers.h

This commit is contained in:
Gregory Nutt 2016-07-20 13:22:16 -06:00
parent 7d517413cb
commit c25159c0fa
2 changed files with 3 additions and 6 deletions

View File

@ -47,12 +47,13 @@
#include <debug.h> #include <debug.h>
#include <nuttx/mtd/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/fs.h> #include <nuttx/drivers/drivers.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/* Configuration ************************************************************/ /* Configuration ************************************************************/
/* Make sure that support for MTD partitions is enabled */ /* Make sure that support for MTD partitions is enabled */

View File

@ -47,7 +47,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/mtd/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/fs.h> #include <nuttx/drivers/drivers.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#ifdef CONFIG_EXAMPLES_MTDRWB #ifdef CONFIG_EXAMPLES_MTDRWB
@ -124,10 +124,6 @@ static uint8_t g_simflash[MTDRWB_BUFSIZE];
extern FAR struct mtd_dev_s *mtdrwb_archinitialize(void); extern FAR struct mtd_dev_s *mtdrwb_archinitialize(void);
#endif #endif
/****************************************************************************
* Private Functions
****************************************************************************/
/**************************************************************************** /****************************************************************************
* Public Functions * Public Functions
****************************************************************************/ ****************************************************************************/