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

Configure Feed

Select the types of activity you want to include in your feed.

thermal: renesas: Fix RZ/G3E fall-out

- Restore sort order in MAINTAINERS and Kconfig,
- Remove empty trailing line from Makefile.

Fixes: 19d3a401a617c68e ("thermal/drivers/renesas/rzg3e: Add thermal driver for the Renesas RZ/G3E SoC")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Geert Uytterhoeven and committed by
Rafael J. Wysocki
e649c366 f13ee7cc

+14 -15
+7 -7
MAINTAINERS
··· 21701 21701 F: Documentation/devicetree/bindings/iio/potentiometer/renesas,x9250.yaml 21702 21702 F: drivers/iio/potentiometer/x9250.c 21703 21703 21704 - RENESAS RZ/G3S THERMAL SENSOR UNIT DRIVER 21705 - M: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com> 21706 - L: linux-pm@vger.kernel.org 21707 - S: Maintained 21708 - F: Documentation/devicetree/bindings/thermal/renesas,r9a08g045-tsu.yaml 21709 - F: drivers/thermal/renesas/rzg3s_thermal.c 21710 - 21711 21704 RENESAS RZ/G3E THERMAL SENSOR UNIT DRIVER 21712 21705 M: John Madieu <john.madieu.xa@bp.renesas.com> 21713 21706 L: linux-pm@vger.kernel.org 21714 21707 S: Maintained 21715 21708 F: Documentation/devicetree/bindings/thermal/renesas,r9a09g047-tsu.yaml 21716 21709 F: drivers/thermal/renesas/rzg3e_thermal.c 21710 + 21711 + RENESAS RZ/G3S THERMAL SENSOR UNIT DRIVER 21712 + M: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com> 21713 + L: linux-pm@vger.kernel.org 21714 + S: Maintained 21715 + F: Documentation/devicetree/bindings/thermal/renesas,r9a08g045-tsu.yaml 21716 + F: drivers/thermal/renesas/rzg3s_thermal.c 21717 21717 21718 21718 RESET CONTROLLER FRAMEWORK 21719 21719 M: Philipp Zabel <p.zabel@pengutronix.de>
+7 -7
drivers/thermal/renesas/Kconfig
··· 27 27 Enable this to plug the RZ/G2L thermal sensor driver into the Linux 28 28 thermal framework. 29 29 30 + config RZG3E_THERMAL 31 + tristate "Renesas RZ/G3E thermal driver" 32 + depends on ARCH_RENESAS || COMPILE_TEST 33 + help 34 + Enable this to plug the RZ/G3E thermal sensor driver into the Linux 35 + thermal framework. 36 + 30 37 config RZG3S_THERMAL 31 38 tristate "Renesas RZ/G3S thermal driver" 32 39 depends on ARCH_R9A08G045 || COMPILE_TEST 33 40 depends on OF && IIO && RZG2L_ADC 34 41 help 35 42 Enable this to plug the RZ/G3S thermal sensor driver into the Linux 36 - thermal framework. 37 - 38 - config RZG3E_THERMAL 39 - tristate "Renesas RZ/G3E thermal driver" 40 - depends on ARCH_RENESAS || COMPILE_TEST 41 - help 42 - Enable this to plug the RZ/G3E thermal sensor driver into the Linux 43 43 thermal framework.
-1
drivers/thermal/renesas/Makefile
··· 5 5 obj-$(CONFIG_RZG2L_THERMAL) += rzg2l_thermal.o 6 6 obj-$(CONFIG_RZG3E_THERMAL) += rzg3e_thermal.o 7 7 obj-$(CONFIG_RZG3S_THERMAL) += rzg3s_thermal.o 8 -