diff options
author | Jan Altenberg <jan@linutronix.de> | 2007-01-25 16:25:56 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-01-30 12:10:48 +0000 |
commit | bf2326e7525404576ab2bdf890e903ca4a249093 (patch) | |
tree | 8e4286fc1d6b5c9f8f83461cf44f2c9c87bac47e | |
parent | c0d4d573feed199b16094c072e7cb07afb01c598 (diff) | |
download | linux-3.10-bf2326e7525404576ab2bdf890e903ca4a249093.tar.gz linux-3.10-bf2326e7525404576ab2bdf890e903ca4a249093.tar.bz2 linux-3.10-bf2326e7525404576ab2bdf890e903ca4a249093.zip |
[PATCH] Malta: Fix build if CONFIG_MTD is diabled.
Signed-off-by: Jan Altenberg <jan@linutronix.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/mips-boards/malta/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/mips-boards/malta/Makefile b/arch/mips/mips-boards/malta/Makefile index b662c75fb28..cb7f349b051 100644 --- a/arch/mips/mips-boards/malta/Makefile +++ b/arch/mips/mips-boards/malta/Makefile @@ -19,5 +19,6 @@ # under Linux. # -obj-y := malta_int.o malta_mtd.o malta_setup.o +obj-y := malta_int.o malta_setup.o +obj-$(CONFIG_MTD) += malta_mtd.o obj-$(CONFIG_SMP) += malta_smp.o |