diff options
author | Prabhakar Kushwaha <prabhakar@freescale.com> | 2014-01-17 11:15:16 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-18 12:20:45 -0800 |
commit | d2ae2e20fbdde5a65f3a5a153044ab1e5c53f7cc (patch) | |
tree | f707fc47d57b18f5eec3a17b8b57f8c12b614f48 /drivers/memory/Makefile | |
parent | 3503958cb0a5f183ddbdafe0f352607920cd8668 (diff) | |
download | talos-obmc-linux-d2ae2e20fbdde5a65f3a5a153044ab1e5c53f7cc.tar.gz talos-obmc-linux-d2ae2e20fbdde5a65f3a5a153044ab1e5c53f7cc.zip |
driver/memory:Move Freescale IFC driver to a common driver
Freescale IFC controller has been used for mpc8xxx. It will be used
for ARM-based SoC as well. This patch moves the driver to driver/memory
and fix the header file includes.
Also remove module_platform_driver() and instead call
platform_driver_register() from subsys_initcall() to make sure this module
has been loaded before MTD partition parsing starts.
Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/memory/Makefile')
-rw-r--r-- | drivers/memory/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/memory/Makefile b/drivers/memory/Makefile index 969d923dad93..f2bf25c801d0 100644 --- a/drivers/memory/Makefile +++ b/drivers/memory/Makefile @@ -6,6 +6,7 @@ ifeq ($(CONFIG_DDR),y) obj-$(CONFIG_OF) += of_memory.o endif obj-$(CONFIG_TI_EMIF) += emif.o +obj-$(CONFIG_FSL_IFC) += fsl_ifc.o obj-$(CONFIG_MVEBU_DEVBUS) += mvebu-devbus.o obj-$(CONFIG_TEGRA20_MC) += tegra20-mc.o obj-$(CONFIG_TEGRA30_MC) += tegra30-mc.o |