Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 34642650 authored by Florian Fainelli's avatar Florian Fainelli
Browse files

soc: Move brcmstb to bcm/brcmstb



Unify the different Broadcom SoCs directory and have everybody live
under drivers/soc/bcm/*.

Acked-by: default avatarScott Branden <scott.branden@broadcom.com>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent 1a695a90
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
menu "SOC (System On Chip) specific Drivers"

source "drivers/soc/bcm/Kconfig"
source "drivers/soc/brcmstb/Kconfig"
source "drivers/soc/fsl/qe/Kconfig"
source "drivers/soc/mediatek/Kconfig"
source "drivers/soc/qcom/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
#

obj-y				+= bcm/
obj-$(CONFIG_SOC_BRCMSTB)	+= brcmstb/
obj-$(CONFIG_ARCH_DOVE)		+= dove/
obj-$(CONFIG_MACH_DOVE)		+= dove/
obj-y				+= fsl/
+15 −0
Original line number Diff line number Diff line
menu "Broadcom SoC drivers"

config RASPBERRYPI_POWER
	bool "Raspberry Pi power domain driver"
	depends on ARCH_BCM2835 || COMPILE_TEST
@@ -7,3 +9,16 @@ config RASPBERRYPI_POWER
	help
	  This enables support for the RPi power domains which can be enabled
	  or disabled via the RPi firmware.

config SOC_BRCMSTB
	bool "Broadcom STB SoC drivers"
	depends on ARM
	select SOC_BUS
	help
	  Enables drivers for the Broadcom Set-Top Box (STB) series of chips.
	  This option alone enables only some support code, while the drivers
	  can be enabled individually within this menu.

	  If unsure, say N.

endmenu
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_RASPBERRYPI_POWER)	+= raspberrypi-power.o
obj-$(CONFIG_SOC_BRCMSTB)	+= brcmstb/
Loading