Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1262996
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile |
| Date | 2015-11-05 09:20 +0100 |
| Message-ID | <qrnW2-44c-13@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The directory drivers/reset/ is guarded by CONFIG_RESET_CONTROLLER in driver/Makefile. CONFIG_RESET_CONTROLLER is boolean, so it always evaluates to 'y' in drivers/reset/Makefile. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/reset/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile index 85d5904..f191cf33 100644 --- a/drivers/reset/Makefile +++ b/drivers/reset/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_RESET_CONTROLLER) += core.o +obj-y += core.o obj-$(CONFIG_ARCH_LPC18XX) += reset-lpc18xx.o obj-$(CONFIG_ARCH_SOCFPGA) += reset-socfpga.o obj-$(CONFIG_ARCH_BERLIN) += reset-berlin.o -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-05 09:20 +0100
Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Philipp Zabel <p.zabel@pengutronix.de> - 2015-11-05 10:40 +0100
Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-11 03:00 +0100
Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Philipp Zabel <p.zabel@pengutronix.de> - 2015-11-11 19:00 +0100
csiph-web