mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
2c138ee335
The meson reset driver will be split in two part, one implemeting the ops, the other providing the platform driver support. This will be done to facilitate the addition of the auxiliary bus support. To avoid making a mess in drivers/reset/ while doing so, move the amlogic reset drivers to a dedicated directory. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de> Link: https://lore.kernel.org/r/20240910-meson-rst-aux-v5-7-60be62635d3e@baylibre.com Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
46 lines
1.9 KiB
Makefile
46 lines
1.9 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y += core.o
|
|
obj-y += amlogic/
|
|
obj-y += hisilicon/
|
|
obj-y += starfive/
|
|
obj-y += sti/
|
|
obj-y += tegra/
|
|
obj-$(CONFIG_RESET_A10SR) += reset-a10sr.o
|
|
obj-$(CONFIG_RESET_ATH79) += reset-ath79.o
|
|
obj-$(CONFIG_RESET_AXS10X) += reset-axs10x.o
|
|
obj-$(CONFIG_RESET_BCM6345) += reset-bcm6345.o
|
|
obj-$(CONFIG_RESET_BERLIN) += reset-berlin.o
|
|
obj-$(CONFIG_RESET_BRCMSTB) += reset-brcmstb.o
|
|
obj-$(CONFIG_RESET_BRCMSTB_RESCAL) += reset-brcmstb-rescal.o
|
|
obj-$(CONFIG_RESET_EYEQ) += reset-eyeq.o
|
|
obj-$(CONFIG_RESET_GPIO) += reset-gpio.o
|
|
obj-$(CONFIG_RESET_HSDK) += reset-hsdk.o
|
|
obj-$(CONFIG_RESET_IMX7) += reset-imx7.o
|
|
obj-$(CONFIG_RESET_IMX8MP_AUDIOMIX) += reset-imx8mp-audiomix.o
|
|
obj-$(CONFIG_RESET_INTEL_GW) += reset-intel-gw.o
|
|
obj-$(CONFIG_RESET_K210) += reset-k210.o
|
|
obj-$(CONFIG_RESET_LANTIQ) += reset-lantiq.o
|
|
obj-$(CONFIG_RESET_LPC18XX) += reset-lpc18xx.o
|
|
obj-$(CONFIG_RESET_MCHP_SPARX5) += reset-microchip-sparx5.o
|
|
obj-$(CONFIG_RESET_NPCM) += reset-npcm.o
|
|
obj-$(CONFIG_RESET_NUVOTON_MA35D1) += reset-ma35d1.o
|
|
obj-$(CONFIG_RESET_PISTACHIO) += reset-pistachio.o
|
|
obj-$(CONFIG_RESET_POLARFIRE_SOC) += reset-mpfs.o
|
|
obj-$(CONFIG_RESET_QCOM_AOSS) += reset-qcom-aoss.o
|
|
obj-$(CONFIG_RESET_QCOM_PDC) += reset-qcom-pdc.o
|
|
obj-$(CONFIG_RESET_RASPBERRYPI) += reset-raspberrypi.o
|
|
obj-$(CONFIG_RESET_RZG2L_USBPHY_CTRL) += reset-rzg2l-usbphy-ctrl.o
|
|
obj-$(CONFIG_RESET_SCMI) += reset-scmi.o
|
|
obj-$(CONFIG_RESET_SIMPLE) += reset-simple.o
|
|
obj-$(CONFIG_RESET_SOCFPGA) += reset-socfpga.o
|
|
obj-$(CONFIG_RESET_SUNPLUS) += reset-sunplus.o
|
|
obj-$(CONFIG_RESET_SUNXI) += reset-sunxi.o
|
|
obj-$(CONFIG_RESET_TI_SCI) += reset-ti-sci.o
|
|
obj-$(CONFIG_RESET_TI_SYSCON) += reset-ti-syscon.o
|
|
obj-$(CONFIG_RESET_TI_TPS380X) += reset-tps380x.o
|
|
obj-$(CONFIG_RESET_TN48M_CPLD) += reset-tn48m.o
|
|
obj-$(CONFIG_RESET_UNIPHIER) += reset-uniphier.o
|
|
obj-$(CONFIG_RESET_UNIPHIER_GLUE) += reset-uniphier-glue.o
|
|
obj-$(CONFIG_RESET_ZYNQ) += reset-zynq.o
|
|
obj-$(CONFIG_RESET_ZYNQMP) += reset-zynqmp.o
|