diff options
author | Boris Brezillon <bbrezillon@kernel.org> | 2020-03-13 22:42:39 +0300 |
---|---|---|
committer | Tudor Ambarus <tudor.ambarus@microchip.com> | 2020-03-17 10:28:02 +0300 |
commit | f7242bfc02b8f8cb820eb32d726c11e7f337e942 (patch) | |
tree | b08928e46094a991e3704b87fe715ace2cc473cf /drivers/mtd/spi-nor/Makefile | |
parent | 9ec4bbcb2044ea1f380c9feceb10654dd5a35a95 (diff) | |
download | linux-f7242bfc02b8f8cb820eb32d726c11e7f337e942.tar.xz |
mtd: spi-nor: Move Atmel bits out of core.c
Create a SPI NOR manufacturer driver for Atmel chips, and move the
Atmel definitions outside of core.c.
Signed-off-by: Boris Brezillon <bbrezillon@kernel.org>
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Diffstat (limited to 'drivers/mtd/spi-nor/Makefile')
-rw-r--r-- | drivers/mtd/spi-nor/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/Makefile b/drivers/mtd/spi-nor/Makefile index 6bcdb6f1615a..0a243592e416 100644 --- a/drivers/mtd/spi-nor/Makefile +++ b/drivers/mtd/spi-nor/Makefile @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 spi-nor-objs := core.o sfdp.o +spi-nor-objs += atmel.o obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o |