mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 16:53:59 -04:00
Add qpic_common.c file which hold all the common qpic APIs which will be used by both qpic raw nand driver and qpic spi nand driver. Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
15 lines
459 B
Makefile
15 lines
459 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
nandcore-objs := core.o bbt.o
|
|
obj-$(CONFIG_MTD_NAND_CORE) += nandcore.o
|
|
obj-$(CONFIG_MTD_NAND_ECC_MEDIATEK) += ecc-mtk.o
|
|
obj-$(CONFIG_MTD_NAND_QCOM) += qpic_common.o
|
|
obj-y += onenand/
|
|
obj-y += raw/
|
|
obj-y += spi/
|
|
|
|
nandcore-$(CONFIG_MTD_NAND_ECC) += ecc.o
|
|
nandcore-$(CONFIG_MTD_NAND_ECC_SW_HAMMING) += ecc-sw-hamming.o
|
|
nandcore-$(CONFIG_MTD_NAND_ECC_SW_BCH) += ecc-sw-bch.o
|
|
nandcore-$(CONFIG_MTD_NAND_ECC_MXIC) += ecc-mxic.o
|