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

Commit 7372add4 authored by Eduardo Valentin's avatar Eduardo Valentin Committed by Greg Kroah-Hartman
Browse files

staging: rename omap-thermal driver to ti-soc-thermal



Because this driver will support also OMAP derivatives,
this patch does a big rename inside this driver, so it
better fits its usage.

This patch only renames the directory, file names,
includes, Makefiles and Kconfig includes.

Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Benoit <b-cousson@ti.com>
Cc: Nishanth Menon <nm@ti.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarEduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d7f080e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ source "drivers/staging/gdm72xx/Kconfig"

source "drivers/staging/csr/Kconfig"

source "drivers/staging/omap-thermal/Kconfig"
source "drivers/staging/ti-soc-thermal/Kconfig"

source "drivers/staging/silicom/Kconfig"

+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ obj-$(CONFIG_ANDROID) += android/
obj-$(CONFIG_USB_WPAN_HCD)	+= ozwpan/
obj-$(CONFIG_WIMAX_GDM72XX)	+= gdm72xx/
obj-$(CONFIG_CSR_WIFI)		+= csr/
obj-$(CONFIG_OMAP_BANDGAP)	+= omap-thermal/
obj-$(CONFIG_OMAP_BANDGAP)	+= ti-soc-thermal/
obj-$(CONFIG_NET_VENDOR_SILICOM)	+= silicom/
obj-$(CONFIG_CED1401)		+= ced1401/
obj-$(CONFIG_DRM_IMX)		+= imx-drm/
+0 −5
Original line number Diff line number Diff line
obj-$(CONFIG_OMAP_BANDGAP)	+= omap-thermal.o
omap-thermal-y			:= omap-bandgap.o
omap-thermal-$(CONFIG_OMAP_THERMAL)	+= omap-thermal-common.o
omap-thermal-$(CONFIG_OMAP4_THERMAL)	+= omap4-thermal-data.o
omap-thermal-$(CONFIG_OMAP5_THERMAL)	+= omap5-thermal-data.o
+4 −2
Original line number Diff line number Diff line
@@ -16,8 +16,10 @@ config OMAP_THERMAL
	depends on CPU_THERMAL
	help
	  If you say yes here you want to get support for generic thermal
	  framework for the Texas Instruments OMAP4460+ on die bandgap
	  temperature sensor.
	  framework for the Texas Instruments on die bandgap temperature sensor.

	  This includes trip points definitions, extrapolation rules and
	  CPU cooling device bindings.

config OMAP4_THERMAL
	bool "Texas Instruments OMAP4 thermal support"
+5 −0
Original line number Diff line number Diff line
obj-$(CONFIG_OMAP_BANDGAP)		+= ti-soc-thermal.o
ti-soc-thermal-y			:= ti-bandgap.o
ti-soc-thermal-$(CONFIG_OMAP_THERMAL)	+= ti-thermal-common.o
ti-soc-thermal-$(CONFIG_OMAP4_THERMAL)	+= omap4-thermal-data.o
ti-soc-thermal-$(CONFIG_OMAP5_THERMAL)	+= omap5-thermal-data.o
Loading