mirror of https://gitee.com/openkylin/linux.git
thermal: bcm2835: move to the broadcom subdirectory
We already have 2 Broadcom drivers and at least 1 more is coming. This made us create broadcom subdirectory where bcm2835 should be moves now. Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Rafał Miłecki <rafal@milecki.pl> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
This commit is contained in:
parent
cb9b323b53
commit
6892cf07e7
|
@ -468,12 +468,4 @@ config ZX2967_THERMAL
|
||||||
the primitive temperature sensor embedded in zx2967 SoCs.
|
the primitive temperature sensor embedded in zx2967 SoCs.
|
||||||
This sensor generates the real time die temperature.
|
This sensor generates the real time die temperature.
|
||||||
|
|
||||||
config BCM2835_THERMAL
|
|
||||||
tristate "Thermal sensors on bcm2835 SoC"
|
|
||||||
depends on ARCH_BCM2835 || COMPILE_TEST
|
|
||||||
depends on HAS_IOMEM
|
|
||||||
depends on THERMAL_OF
|
|
||||||
help
|
|
||||||
Support for thermal sensors on Broadcom bcm2835 SoCs.
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -60,4 +60,3 @@ obj-$(CONFIG_HISI_THERMAL) += hisi_thermal.o
|
||||||
obj-$(CONFIG_MTK_THERMAL) += mtk_thermal.o
|
obj-$(CONFIG_MTK_THERMAL) += mtk_thermal.o
|
||||||
obj-$(CONFIG_GENERIC_ADC_THERMAL) += thermal-generic-adc.o
|
obj-$(CONFIG_GENERIC_ADC_THERMAL) += thermal-generic-adc.o
|
||||||
obj-$(CONFIG_ZX2967_THERMAL) += zx2967_thermal.o
|
obj-$(CONFIG_ZX2967_THERMAL) += zx2967_thermal.o
|
||||||
obj-$(CONFIG_BCM2835_THERMAL) += bcm2835_thermal.o
|
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
config BCM2835_THERMAL
|
||||||
|
tristate "Thermal sensors on bcm2835 SoC"
|
||||||
|
depends on ARCH_BCM2835 || COMPILE_TEST
|
||||||
|
depends on HAS_IOMEM
|
||||||
|
depends on THERMAL_OF
|
||||||
|
help
|
||||||
|
Support for thermal sensors on Broadcom bcm2835 SoCs.
|
||||||
|
|
||||||
config BCM_NS_THERMAL
|
config BCM_NS_THERMAL
|
||||||
tristate "Northstar thermal driver"
|
tristate "Northstar thermal driver"
|
||||||
depends on ARCH_BCM_IPROC || COMPILE_TEST
|
depends on ARCH_BCM_IPROC || COMPILE_TEST
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
|
obj-$(CONFIG_BCM2835_THERMAL) += bcm2835_thermal.o
|
||||||
obj-$(CONFIG_BCM_NS_THERMAL) += ns-thermal.o
|
obj-$(CONFIG_BCM_NS_THERMAL) += ns-thermal.o
|
||||||
|
|
Loading…
Reference in New Issue