diff options
author | Kevin Hilman <khilman@linaro.org> | 2015-09-09 15:42:45 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@linaro.org> | 2015-09-09 15:42:45 -0700 |
commit | 71d440499b8ecbd5289bdf4ef5cce6eb62fffb0d (patch) | |
tree | 822293ceb6ce26df473b8e61c3b8ec8fa9948dd6 /drivers/reset/Makefile | |
parent | 7c4ecc72d82f2908b9fe70dbd49c1cd35738f995 (diff) | |
parent | 9738031561d246f625325badb03a1f1eca2d1b01 (diff) | |
download | lwn-71d440499b8ecbd5289bdf4ef5cce6eb62fffb0d.tar.gz lwn-71d440499b8ecbd5289bdf4ef5cce6eb62fffb0d.zip |
Merge branch 'drivers/reset' into next/late
* drivers/reset:
reset: ath79: Fix missing spin_lock_init
reset: Add (devm_)reset_control_get stub functions
reset: reset-zynq: Adding support for Xilinx Zynq reset controller.
docs: dts: Added documentation for Xilinx Zynq Reset Controller bindings.
MIPS: ath79: Add the reset controller to the AR9132 dtsi
reset: Add a driver for the reset controller on the AR71XX/AR9XXX
devicetree: Add bindings for the ATH79 reset controller
reset: socfpga: Update reset-socfpga to read the altr,modrst-offset property
doc: dt: add documentation for lpc1850-rgu reset driver
reset: add driver for lpc18xx rgu
reset: sti: constify of_device_id array
ARM: STi: DT: Move reset controller constants into common location
MAINTAINERS: add include/dt-bindings/reset path to reset controller entry
Diffstat (limited to 'drivers/reset/Makefile')
-rw-r--r-- | drivers/reset/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile index 157d421f755b..85d5904e5480 100644 --- a/drivers/reset/Makefile +++ b/drivers/reset/Makefile @@ -1,5 +1,8 @@ obj-$(CONFIG_RESET_CONTROLLER) += core.o +obj-$(CONFIG_ARCH_LPC18XX) += reset-lpc18xx.o obj-$(CONFIG_ARCH_SOCFPGA) += reset-socfpga.o obj-$(CONFIG_ARCH_BERLIN) += reset-berlin.o obj-$(CONFIG_ARCH_SUNXI) += reset-sunxi.o obj-$(CONFIG_ARCH_STI) += sti/ +obj-$(CONFIG_ARCH_ZYNQ) += reset-zynq.o +obj-$(CONFIG_ATH79) += reset-ath79.o |