]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
reset: zynq: add driver Kconfig option
authorPhilipp Zabel <p.zabel@pengutronix.de>
Tue, 9 Aug 2016 07:28:54 +0000 (09:28 +0200)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Tue, 30 Aug 2016 15:08:51 +0000 (17:08 +0200)
Visible only if COMPILE_TEST is enabled, this allows to include the
driver in build tests.

Cc: Moritz Fischer <moritz.fischer@ettus.com>
Cc: Sören Brinkmann <soren.brinkmann@xilinx.com>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/reset/Kconfig
drivers/reset/Makefile

index 7f748aff5e4aa18a486ce652c78cff9edb98127c..06d9fa2f3bc099efccabc3bb5d7c6b847e19fd0c 100644 (file)
@@ -86,6 +86,12 @@ config RESET_UNIPHIER
          Say Y if you want to control reset signals provided by System Control
          block, Media I/O block, Peripheral Block.
 
+config RESET_ZYNQ
+       bool "ZYNQ Reset Driver" if COMPILE_TEST
+       default ARCH_ZYNQ
+       help
+         This enables the reset controller driver for Xilinx Zynq SoCs.
+
 source "drivers/reset/sti/Kconfig"
 source "drivers/reset/hisilicon/Kconfig"
 
index 4a163c7913c2b44877dc4fdad4cdf41677dbe7ae..56f90eab84cc875e2c34123b571eca1c33902596 100644 (file)
@@ -1,7 +1,6 @@
 obj-y += core.o
 obj-$(CONFIG_ARCH_STI) += sti/
 obj-$(CONFIG_ARCH_HISI) += hisilicon/
-obj-$(CONFIG_ARCH_ZYNQ) += reset-zynq.o
 obj-$(CONFIG_RESET_ATH79) += reset-ath79.o
 obj-$(CONFIG_RESET_BERLIN) += reset-berlin.o
 obj-$(CONFIG_RESET_LPC18XX) += reset-lpc18xx.o
@@ -13,3 +12,4 @@ obj-$(CONFIG_RESET_STM32) += reset-stm32.o
 obj-$(CONFIG_RESET_SUNXI) += reset-sunxi.o
 obj-$(CONFIG_TI_SYSCON_RESET) += reset-ti-syscon.o
 obj-$(CONFIG_RESET_UNIPHIER) += reset-uniphier.o
+obj-$(CONFIG_RESET_ZYNQ) += reset-zynq.o