linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile
@ 2015-11-05  8:17 Masahiro Yamada
  2015-11-05  9:33 ` Philipp Zabel
  0 siblings, 1 reply; 4+ messages in thread
From: Masahiro Yamada @ 2015-11-05  8:17 UTC (permalink / raw)
  To: linux-kernel, Philipp Zabel; +Cc: Masahiro Yamada

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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-11-11 17:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-05  8:17 [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Masahiro Yamada
2015-11-05  9:33 ` Philipp Zabel
2015-11-11  1:52   ` Masahiro Yamada
2015-11-11 17:57     ` Philipp Zabel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).