Moved include/nuttx/mtd.h to include/nuttx/mtd/mtd.h

This commit is contained in:
Gregory Nutt
2013-11-15 11:22:23 -06:00
parent f1671bb6a7
commit 897572a552
59 changed files with 93 additions and 64 deletions
+5 -2
View File
@@ -6059,6 +6059,9 @@
compilation for the set of writable file systems. Noted by compilation for the set of writable file systems. Noted by
Daniel Palmer (2013-11-15). Daniel Palmer (2013-11-15).
* arch/arm/src/sama5/sam_nand.c and .h: Framework for an MTD driver * arch/arm/src/sama5/sam_nand.c and .h: Framework for an MTD driver
that will provide raw access to NAND (2013-11015). that will provide raw access to NAND (2013-11-15).
* configs/sama5d3x-ek/src/sam_nandflash.c: Provides board-specific * configs/sama5d3x-ek/src/sam_nandflash.c: Provides board-specific
memory controller initialize for NAND flash (2013-11015). memory controller initialize for NAND flash (2013-11-15).
* include/nuttx/mtd/mtd.h: Move include/nutt/mtd.h to
include/nuttx/mtd/mtd.h where it will, hopefully, soon be joined by
other MTD-related header files (2013-11-15).
+1 -1
View File
@@ -3246,7 +3246,7 @@ extern void up_ledoff(int led);
<ul> <ul>
<li> <li>
<p> <p>
<b><code>include/nuttx/mtd.h</code></b>. <b><code>include/nuttx/mtd/mtd.h</code></b>.
All structures and APIs needed to work with MTD drivers are provided in this header file. All structures and APIs needed to work with MTD drivers are provided in this header file.
</p> </p>
</li> </li>
+1 -1
View File
@@ -52,7 +52,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "up_arch.h" #include "up_arch.h"
#include "chip.h" #include "chip.h"
+1 -1
View File
@@ -51,7 +51,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <arch/irq.h> #include <arch/irq.h>
#include <arch/board/board.h> #include <arch/board/board.h>
+1 -1
View File
@@ -41,7 +41,7 @@
****************************************************************************/ ****************************************************************************/
#include <nuttx/config.h> #include <nuttx/config.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "chip.h" #include "chip.h"
#include "chip/lpc43_spifi.h" #include "chip/lpc43_spifi.h"
+8
View File
@@ -3033,6 +3033,8 @@ config SAMA5_EBICS0_NOR
config SAMA5_EBICS0_NAND config SAMA5_EBICS0_NAND
bool "NAND Flash" bool "NAND Flash"
select MTD
select MTD_NAND
endchoice # CS0 Memory Type endchoice # CS0 Memory Type
endif # SAMA5_EBICS0 endif # SAMA5_EBICS0
@@ -3082,6 +3084,8 @@ config SAMA5_EBICS1_NOR
config SAMA5_EBICS1_NAND config SAMA5_EBICS1_NAND
bool "NAND Flash" bool "NAND Flash"
select MTD
select MTD_NAND
endchoice # CS1 Memory Type endchoice # CS1 Memory Type
endif # SAMA5_EBICS1 endif # SAMA5_EBICS1
@@ -3131,6 +3135,8 @@ config SAMA5_EBICS2_NOR
config SAMA5_EBICS2_NAND config SAMA5_EBICS2_NAND
bool "NAND Flash" bool "NAND Flash"
select MTD
select MTD_NAND
endchoice # CS2 Memory Type endchoice # CS2 Memory Type
endif # SAMA5_EBICS2 endif # SAMA5_EBICS2
@@ -3180,6 +3186,8 @@ config SAMA5_EBICS3_NOR
config SAMA5_EBICS3_NAND config SAMA5_EBICS3_NAND
bool "NAND Flash" bool "NAND Flash"
select MTD
select MTD_NAND
endchoice # CS3 Memory Type endchoice # CS3 Memory Type
endif # SAMA5_EBICS3 endif # SAMA5_EBICS3
+12 -3
View File
@@ -4,6 +4,15 @@
* Copyright (C) 2013 Gregory Nutt. All rights reserved. * Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* References:
* SAMA5D3 Series Data Sheet
* Atmel NoOS sample code.
*
* The Atmel sample code has a BSD compatibile license that requires this
* copyright notice:
*
* Copyright (c) 2011, 2012, Atmel Corporation
*
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
* are met: * are met:
@@ -14,8 +23,8 @@
* notice, this list of conditions and the following disclaimer in * notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the * the documentation and/or other materials provided with the
* distribution. * distribution.
* 3. Neither the name NuttX nor the names of its contributors may be * 3. Neither the names NuttX nor Atmel nor the names of its contributors
* used to endorse or promote products derived from this software * may be used to endorse or promote products derived from this software
* without specific prior written permission. * without specific prior written permission.
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@@ -46,7 +55,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "sam_nand.h" #include "sam_nand.h"
+1 -1
View File
@@ -50,7 +50,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include <nuttx/fs/nxffs.h> # include <nuttx/fs/nxffs.h>
#endif #endif
+1 -1
View File
@@ -66,7 +66,7 @@
# include <sys/ioctl.h> # include <sys/ioctl.h>
# include <nuttx/fs/ioctl.h> # include <nuttx/fs/ioctl.h>
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -66,7 +66,7 @@
# include <sys/ioctl.h> # include <sys/ioctl.h>
# include <nuttx/fs/ioctl.h> # include <nuttx/fs/ioctl.h>
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -49,7 +49,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include <nuttx/fs/nxffs.h> # include <nuttx/fs/nxffs.h>
#endif #endif
+1 -1
View File
@@ -47,7 +47,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
#ifdef CONFIG_STM32_SDIO #ifdef CONFIG_STM32_SDIO
+1 -1
View File
@@ -47,7 +47,7 @@
#include "chip.h" #include "chip.h"
#ifdef CONFIG_LPC43_SPIFI #ifdef CONFIG_LPC43_SPIFI
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include "lpc43_spifi.h" # include "lpc43_spifi.h"
# ifdef CONFIG_SPFI_NXFFS # ifdef CONFIG_SPFI_NXFFS
+1 -1
View File
@@ -52,7 +52,7 @@
#endif #endif
#ifdef CONFIG_MTD_M25P #ifdef CONFIG_MTD_M25P
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
#ifdef CONFIG_SYSTEM_USBMONITOR #ifdef CONFIG_SYSTEM_USBMONITOR
+1 -1
View File
@@ -49,7 +49,7 @@
#ifdef CONFIG_PIC32MX_SPI2 #ifdef CONFIG_PIC32MX_SPI2
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include <nuttx/fs/nxffs.h> # include <nuttx/fs/nxffs.h>
#endif #endif
+1 -1
View File
@@ -65,7 +65,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/i2c.h> #include <nuttx/i2c.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/nxffs.h> #include <nuttx/fs/nxffs.h>
#include "sama5d3x-ek.h" #include "sama5d3x-ek.h"
+1 -1
View File
@@ -47,7 +47,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/nxffs.h> #include <nuttx/fs/nxffs.h>
#include "sam_spi.h" #include "sam_spi.h"
+1 -1
View File
@@ -49,7 +49,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include <nuttx/fs/nxffs.h> # include <nuttx/fs/nxffs.h>
#endif #endif
+1 -1
View File
@@ -50,7 +50,7 @@
#ifdef CONFIG_MTD_SST25 #ifdef CONFIG_MTD_SST25
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include <sys/mount.h> # include <sys/mount.h>
#endif #endif
+1 -1
View File
@@ -50,7 +50,7 @@
#ifdef CONFIG_MTD_SST25 #ifdef CONFIG_MTD_SST25
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
# include <sys/mount.h> # include <sys/mount.h>
#endif #endif
+1 -1
View File
@@ -47,7 +47,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
#ifdef CONFIG_STM32_SDIO #ifdef CONFIG_STM32_SDIO
+1 -1
View File
@@ -47,7 +47,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
#ifdef CONFIG_STM32_SDIO #ifdef CONFIG_STM32_SDIO
+1 -1
View File
@@ -47,7 +47,7 @@
#ifdef CONFIG_STM32_SPI1 #ifdef CONFIG_STM32_SPI1
# include <nuttx/spi/spi.h> # include <nuttx/spi/spi.h>
# include <nuttx/mtd.h> # include <nuttx/mtd/mtd.h>
#endif #endif
#ifdef CONFIG_STM32_SDIO #ifdef CONFIG_STM32_SDIO
+1 -1
View File
@@ -327,7 +327,7 @@ menuconfig MTD
---help--- ---help---
Memory Technology Device (MTD) drivers. Some simple drivers for Memory Technology Device (MTD) drivers. Some simple drivers for
memory technologies like FLASH, EEPROM, NVRAM, etc. See memory technologies like FLASH, EEPROM, NVRAM, etc. See
include/nuttx/mtd.h include/nuttx/mtd/mtd.h
(Note: This is a simple memory interface and should not be (Note: This is a simple memory interface and should not be
confused with the "real" MTD developed at infradead.org. This confused with the "real" MTD developed at infradead.org. This
+1 -1
View File
@@ -85,7 +85,7 @@ mmcsd/
mtd/ mtd/
Memory Technology Device (MTD) drivers. Some simple drivers for Memory Technology Device (MTD) drivers. Some simple drivers for
memory technologies like FLASH, EEPROM, NVRAM, etc. See memory technologies like FLASH, EEPROM, NVRAM, etc. See
include/nuttx/mtd.h include/nuttx/mtd/mtd.h
(Note: This is a simple memory interface and should not be (Note: This is a simple memory interface and should not be
confused with the "real" MTD developed at infradead.org. This confused with the "real" MTD developed at infradead.org. This
+10 -1
View File
@@ -19,7 +19,7 @@ config MTD_PARTITION
each managed by a separate MTD driver. The MTD parition interface each managed by a separate MTD driver. The MTD parition interface
is described in: is described in:
include/nuttx/mtd.h include/nuttx/mtd/mtd.h
FAR struct mtd_dev_s *mtd_partition(FAR struct mtd_dev_s *mtd, off_t offset, off_t nblocks); FAR struct mtd_dev_s *mtd_partition(FAR struct mtd_dev_s *mtd, off_t offset, off_t nblocks);
Each call to mtd_partition() will create a new MTD driver instance Each call to mtd_partition() will create a new MTD driver instance
@@ -75,6 +75,15 @@ config MTD_CONFIG_ERASEDVALUE
comment "MTD Device Drivers" comment "MTD Device Drivers"
config MTD_NAND
bool "Enable NAND support"
default n
---help---
Enable support for NAND FLASH devices.
if MTD_NAND
endif # MTD_NAND
config RAMMTD config RAMMTD
bool "RAM-based MTD driver" bool "RAM-based MTD driver"
default n default n
+1 -1
View File
@@ -60,7 +60,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/i2c.h> #include <nuttx/i2c.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#ifdef CONFIG_MTD_AT24XX #ifdef CONFIG_MTD_AT24XX
+1 -1
View File
@@ -52,7 +52,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/************************************************************************************ /************************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -63,7 +63,7 @@
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/************************************************************************************ /************************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -44,7 +44,7 @@
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/**************************************************************************** /****************************************************************************
* Private Definitions * Private Definitions
+1 -1
View File
@@ -52,7 +52,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/rwbuffer.h> #include <nuttx/rwbuffer.h>
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -52,7 +52,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/************************************************************************************ /************************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -58,7 +58,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/configdata.h> #include <nuttx/configdata.h>
#ifdef CONFIG_MTD_CONFIG #ifdef CONFIG_MTD_CONFIG
+1 -1
View File
@@ -46,7 +46,7 @@
#include <assert.h> #include <assert.h>
#include <debug.h> #include <debug.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
+1 -1
View File
@@ -48,7 +48,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -69,7 +69,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/************************************************************************************ /************************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -44,7 +44,7 @@
#include <errno.h> #include <errno.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -55,7 +55,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/smart.h> #include <nuttx/smart.h>
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -59,7 +59,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/************************************************************************************ /************************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -51,7 +51,7 @@
#include <nuttx/clock.h> #include <nuttx/clock.h>
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -54,7 +54,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h> #include <nuttx/spi/spi.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
/************************************************************************************ /************************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
+1 -1
View File
@@ -49,7 +49,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <semaphore.h> #include <semaphore.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/nxffs.h> #include <nuttx/fs/nxffs.h>
/**************************************************************************** /****************************************************************************
+1 -1
View File
@@ -46,7 +46,7 @@
#include <assert.h> #include <assert.h>
#include <debug.h> #include <debug.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "nxffs.h" #include "nxffs.h"
+1 -1
View File
@@ -45,7 +45,7 @@
#include <errno.h> #include <errno.h>
#include <debug.h> #include <debug.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "nxffs.h" #include "nxffs.h"
+1 -1
View File
@@ -45,7 +45,7 @@
#include <errno.h> #include <errno.h>
#include <debug.h> #include <debug.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "nxffs.h" #include "nxffs.h"
+1 -1
View File
@@ -48,7 +48,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/dirent.h> #include <nuttx/fs/dirent.h>
#include "nxffs.h" #include "nxffs.h"
+1 -1
View File
@@ -48,7 +48,7 @@
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "nxffs.h" #include "nxffs.h"
+1 -1
View File
@@ -47,7 +47,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
+1 -1
View File
@@ -48,7 +48,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/kmalloc.h> #include <nuttx/kmalloc.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "nxffs.h" #include "nxffs.h"
+1 -1
View File
@@ -48,7 +48,7 @@
#include <nuttx/fs/fs.h> #include <nuttx/fs/fs.h>
#include <nuttx/fs/ioctl.h> #include <nuttx/fs/ioctl.h>
#include <nuttx/mtd.h> #include <nuttx/mtd/mtd.h>
#include "nxffs.h" #include "nxffs.h"

Some files were not shown because too many files have changed in this diff Show More