mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 06:43:09 +00:00
![Paul Cercueil](/assets/img/avatar_default.png)
The ingenic-nand driver uses an API provided by the jz4780-bch driver. This makes it difficult to support other SoCs in the jz4780-bch driver. To work around this, we separate the API functions from the SoC-specific code, so that these API functions are SoC-agnostic. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
6 lines
198 B
Makefile
6 lines
198 B
Makefile
obj-$(CONFIG_MTD_NAND_JZ4740) += jz4740_nand.o
|
|
obj-$(CONFIG_MTD_NAND_JZ4780) += ingenic_nand.o
|
|
|
|
obj-$(CONFIG_MTD_NAND_INGENIC_ECC) += ingenic_ecc.o
|
|
obj-$(CONFIG_MTD_NAND_JZ4780_BCH) += jz4780_bch.o
|