mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 14:21:55 +07:00
d85339d9ea
As previously reported by Sudip Mukherjee for the Samsung driver, the omap2 onenand driver is called omap2.c in our directory and omap2.c in the tty/serial/ directory. If both drivers are compiled as modules, it would produce the following warning: warning: same module names found: drivers/tty/serial/omap2.ko drivers/mtd/nand/onenand/omap2.ko Rename the onenand omap2 driver so that it fits the folder's convention: onenand_omap2.c. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
15 lines
357 B
Makefile
15 lines
357 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the OneNAND MTD
|
|
#
|
|
|
|
# Core functionality.
|
|
obj-$(CONFIG_MTD_ONENAND) += onenand.o
|
|
|
|
# Board specific.
|
|
obj-$(CONFIG_MTD_ONENAND_GENERIC) += generic.o
|
|
obj-$(CONFIG_MTD_ONENAND_OMAP2) += onenand_omap2.o
|
|
obj-$(CONFIG_MTD_ONENAND_SAMSUNG) += onenand_samsung.o
|
|
|
|
onenand-objs = onenand_base.o onenand_bbt.o
|