Commit aded0023 authored by Ulf Hansson's avatar Ulf Hansson
Browse files

soc: bcm: Move power-domain drivers to the genpd dir



To simplify with maintenance let's move the bcm power-domain drivers to the
new genpd directory. Going forward, patches are intended to be managed
through a separate git tree, according to MAINTAINERS.

While moving the drivers, we end up with a directory for bcm63xx that only
contains a Kconfig file, which seems a bit silly. Let's therefore also move
the Kconfig options into the Kconfig file a directory above, as it allows
us to drop the directory too.

Cc: Florian Fainelli <florian.fainelli@broadcom.com>
Cc: Ray Jui <rjui@broadcom.com>
Cc: Scott Branden <sbranden@broadcom.com>
Cc: <linux-mips@vger.kernel.org>
Cc: <linux-rpi-kernel@lists.infradead.org>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 869b9dd3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4009,7 +4009,7 @@ F: arch/mips/kernel/*bmips*
F:	drivers/irqchip/irq-bcm63*
F:	drivers/irqchip/irq-bcm7*
F:	drivers/irqchip/irq-brcmstb*
F:	drivers/soc/bcm/bcm63xx
F:	drivers/genpd/bcm/bcm63xx-power.c
F:	include/linux/bcm963xx_nvram.h
F:	include/linux/bcm963xx_tag.h
@@ -4224,7 +4224,7 @@ R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
L:	linux-pm@vger.kernel.org
S:	Maintained
T:	git https://github.com/broadcom/stblinux.git
F:	drivers/soc/bcm/bcm63xx/bcm-pmb.c
F:	drivers/genpd/bcm/bcm-pmb.c
F:	include/dt-bindings/soc/bcm-pmb.h
BROADCOM SPECIFIC AMBA DRIVER (BCMA)
+1 −0
Original line number Diff line number Diff line
@@ -2,3 +2,4 @@
obj-y					+= actions/
obj-y					+= amlogic/
obj-y					+= apple/
obj-y					+= bcm/
+5 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_BCM_PMB)			+= bcm-pmb.o
obj-$(CONFIG_BCM2835_POWER)		+= bcm2835-power.o
obj-$(CONFIG_BCM63XX_POWER)		+= bcm63xx-power.o
obj-$(CONFIG_RASPBERRYPI_POWER)		+= raspberrypi-power.o
Loading