diff options
| author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 14:35:51 +0900 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-11-17 14:11:30 -0500 | 
| commit | 7b6af41ef342199e4967735ea17424b42ed742d2 (patch) | |
| tree | 39baaeee06c1e1c5457e5bebcf7a85ec58e4886b /drivers/fpga | |
| parent | 1b2226e0ceebf01e192715b77b96dbe9e9f75a4b (diff) | |
| download | olio-uboot-2014.01-7b6af41ef342199e4967735ea17424b42ed742d2.tar.xz olio-uboot-2014.01-7b6af41ef342199e4967735ea17424b42ed742d2.zip | |
drivers: descend into sub directories only when it is necessary
- Descend into drivers/fpga/ only when CONFIG_FPGA=y
  - Descend into drivers/bios_emulator only when CONFIG_BIOSEMU=y
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers/fpga')
| -rw-r--r-- | drivers/fpga/Makefile | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/drivers/fpga/Makefile b/drivers/fpga/Makefile index 4fcdf40fd..dfb2e7fc7 100644 --- a/drivers/fpga/Makefile +++ b/drivers/fpga/Makefile @@ -5,7 +5,6 @@  # SPDX-License-Identifier:	GPL-2.0+  # -ifdef CONFIG_FPGA  obj-y += fpga.o  obj-$(CONFIG_FPGA_SPARTAN2) += spartan2.o  obj-$(CONFIG_FPGA_SPARTAN3) += spartan3.o @@ -19,4 +18,3 @@ obj-$(CONFIG_FPGA_ACEX1K) += ACEX1K.o  obj-$(CONFIG_FPGA_CYCLON2) += cyclon2.o  obj-$(CONFIG_FPGA_STRATIX_II) += stratixII.o  endif -endif |