Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Rafał Miłecki and committed by
Eduardo Valentin
6892cf07 cb9b323b

+9 -9
-8
drivers/thermal/Kconfig
··· 468 468 the primitive temperature sensor embedded in zx2967 SoCs. 469 469 This sensor generates the real time die temperature. 470 470 471 - config BCM2835_THERMAL 472 - tristate "Thermal sensors on bcm2835 SoC" 473 - depends on ARCH_BCM2835 || COMPILE_TEST 474 - depends on HAS_IOMEM 475 - depends on THERMAL_OF 476 - help 477 - Support for thermal sensors on Broadcom bcm2835 SoCs. 478 - 479 471 endif
-1
drivers/thermal/Makefile
··· 60 60 obj-$(CONFIG_MTK_THERMAL) += mtk_thermal.o 61 61 obj-$(CONFIG_GENERIC_ADC_THERMAL) += thermal-generic-adc.o 62 62 obj-$(CONFIG_ZX2967_THERMAL) += zx2967_thermal.o 63 - obj-$(CONFIG_BCM2835_THERMAL) += bcm2835_thermal.o
drivers/thermal/bcm2835_thermal.c drivers/thermal/broadcom/bcm2835_thermal.c
+8
drivers/thermal/broadcom/Kconfig
··· 1 + config BCM2835_THERMAL 2 + tristate "Thermal sensors on bcm2835 SoC" 3 + depends on ARCH_BCM2835 || COMPILE_TEST 4 + depends on HAS_IOMEM 5 + depends on THERMAL_OF 6 + help 7 + Support for thermal sensors on Broadcom bcm2835 SoCs. 8 + 1 9 config BCM_NS_THERMAL 2 10 tristate "Northstar thermal driver" 3 11 depends on ARCH_BCM_IPROC || COMPILE_TEST
+1
drivers/thermal/broadcom/Makefile
··· 1 + obj-$(CONFIG_BCM2835_THERMAL) += bcm2835_thermal.o 1 2 obj-$(CONFIG_BCM_NS_THERMAL) += ns-thermal.o