Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26777d37 authored by Boris Brezillon's avatar Boris Brezillon
Browse files

mtd: Move onenand code base to drivers/mtd/nand/onenand



Move onenand code base to the drivers/mtd/nand directory in the hope
that someday someone will patch it to use the generic NAND helpers.
If it never happens, at least we'll have all NAND related support in a
single directory and not spread over the drivers/mtd/ directory.

Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
parent 801492c5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10206,7 +10206,7 @@ ONENAND FLASH DRIVER
M:	Kyungmin Park <kyungmin.park@samsung.com>
L:	linux-mtd@lists.infradead.org
S:	Maintained
F:	drivers/mtd/onenand/
F:	drivers/mtd/nand/onenand/
F:	include/linux/mtd/onenand*.h

ONSTREAM SCSI TAPE DRIVER
+0 −2
Original line number Diff line number Diff line
@@ -333,8 +333,6 @@ source "drivers/mtd/devices/Kconfig"

source "drivers/mtd/nand/Kconfig"

source "drivers/mtd/onenand/Kconfig"

source "drivers/mtd/lpddr/Kconfig"

source "drivers/mtd/spi-nor/Kconfig"
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ obj-$(CONFIG_MTD_SWAP) += mtdswap.o
nftl-objs		:= nftlcore.o nftlmount.o
inftl-objs		:= inftlcore.o inftlmount.o

obj-y		+= chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/
obj-y		+= chips/ lpddr/ maps/ devices/ nand/ tests/

obj-$(CONFIG_MTD_SPI_NOR)	+= spi-nor/
obj-$(CONFIG_MTD_UBI)		+= ubi/
+2 −0
Original line number Diff line number Diff line
config MTD_NAND_CORE
	tristate

source "drivers/mtd/nand/onenand/Kconfig"

source "drivers/mtd/nand/raw/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -3,4 +3,5 @@
nandcore-objs := core.o bbt.o
obj-$(CONFIG_MTD_NAND_CORE) += nandcore.o

obj-y	+= onenand/
obj-y	+= raw/
Loading