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.

pwm: Restore alphabetic ordering in Kconfig and Makefile

The drivers are nearly ordered alphabetically by the symbol name. Fix the
few outliers.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20250508081706.751209-2-u.kleine-koenig@baylibre.com
Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>

authored by

Uwe Kleine-König and committed by
Uwe Kleine-König
84e351d8 d041b76a

+32 -32
+30 -30
drivers/pwm/Kconfig
··· 114 114 To compile this driver as a module, choose M here: the module will be 115 115 called pwm-axi-pwmgen. 116 116 117 + config PWM_BCM2835 118 + tristate "BCM2835 PWM support" 119 + depends on ARCH_BCM2835 || ARCH_BRCMSTB || COMPILE_TEST 120 + depends on HAS_IOMEM 121 + help 122 + PWM framework driver for BCM2835 controller (Raspberry Pi) 123 + 124 + To compile this driver as a module, choose M here: the module 125 + will be called pwm-bcm2835. 126 + 117 127 config PWM_BCM_IPROC 118 128 tristate "iProc PWM support" 119 129 depends on ARCH_BCM_IPROC || COMPILE_TEST ··· 146 136 147 137 To compile this driver as a module, choose M here: the module 148 138 will be called pwm-bcm-kona. 149 - 150 - config PWM_BCM2835 151 - tristate "BCM2835 PWM support" 152 - depends on ARCH_BCM2835 || ARCH_BRCMSTB || COMPILE_TEST 153 - depends on HAS_IOMEM 154 - help 155 - PWM framework driver for BCM2835 controller (Raspberry Pi) 156 - 157 - To compile this driver as a module, choose M here: the module 158 - will be called pwm-bcm2835. 159 139 160 140 config PWM_BERLIN 161 141 tristate "Marvell Berlin PWM support" ··· 435 435 To compile this driver as a module, choose M here: the module 436 436 will be called pwm-mc33xs2410. 437 437 438 + config PWM_MEDIATEK 439 + tristate "MediaTek PWM support" 440 + depends on ARCH_MEDIATEK || RALINK || COMPILE_TEST 441 + depends on HAS_IOMEM 442 + help 443 + Generic PWM framework driver for Mediatek ARM SoC. 444 + 445 + To compile this driver as a module, choose M here: the module 446 + will be called pwm-mediatek. 447 + 438 448 config PWM_MESON 439 449 tristate "Amlogic Meson PWM driver" 440 450 depends on ARCH_MESON || COMPILE_TEST ··· 454 444 455 445 To compile this driver as a module, choose M here: the module 456 446 will be called pwm-meson. 447 + 448 + config PWM_MICROCHIP_CORE 449 + tristate "Microchip corePWM PWM support" 450 + depends on ARCH_MICROCHIP_POLARFIRE || COMPILE_TEST 451 + depends on HAS_IOMEM && OF 452 + help 453 + PWM driver for Microchip FPGA soft IP core. 454 + 455 + To compile this driver as a module, choose M here: the module 456 + will be called pwm-microchip-core. 457 457 458 458 config PWM_MTK_DISP 459 459 tristate "MediaTek display PWM driver" ··· 475 455 476 456 To compile this driver as a module, choose M here: the module 477 457 will be called pwm-mtk-disp. 478 - 479 - config PWM_MEDIATEK 480 - tristate "MediaTek PWM support" 481 - depends on ARCH_MEDIATEK || RALINK || COMPILE_TEST 482 - depends on HAS_IOMEM 483 - help 484 - Generic PWM framework driver for Mediatek ARM SoC. 485 - 486 - To compile this driver as a module, choose M here: the module 487 - will be called pwm-mediatek. 488 - 489 - config PWM_MICROCHIP_CORE 490 - tristate "Microchip corePWM PWM support" 491 - depends on ARCH_MICROCHIP_POLARFIRE || COMPILE_TEST 492 - depends on HAS_IOMEM && OF 493 - help 494 - PWM driver for Microchip FPGA soft IP core. 495 - 496 - To compile this driver as a module, choose M here: the module 497 - will be called pwm-microchip-core. 498 458 499 459 config PWM_MXS 500 460 tristate "Freescale MXS PWM support"
+2 -2
drivers/pwm/Makefile
··· 7 7 obj-$(CONFIG_PWM_ATMEL_HLCDC_PWM) += pwm-atmel-hlcdc.o 8 8 obj-$(CONFIG_PWM_ATMEL_TCB) += pwm-atmel-tcb.o 9 9 obj-$(CONFIG_PWM_AXI_PWMGEN) += pwm-axi-pwmgen.o 10 + obj-$(CONFIG_PWM_BCM2835) += pwm-bcm2835.o 10 11 obj-$(CONFIG_PWM_BCM_IPROC) += pwm-bcm-iproc.o 11 12 obj-$(CONFIG_PWM_BCM_KONA) += pwm-bcm-kona.o 12 - obj-$(CONFIG_PWM_BCM2835) += pwm-bcm2835.o 13 13 obj-$(CONFIG_PWM_BERLIN) += pwm-berlin.o 14 14 obj-$(CONFIG_PWM_BRCMSTB) += pwm-brcmstb.o 15 15 obj-$(CONFIG_PWM_CLK) += pwm-clk.o ··· 38 38 obj-$(CONFIG_PWM_LPSS_PCI) += pwm-lpss-pci.o 39 39 obj-$(CONFIG_PWM_LPSS_PLATFORM) += pwm-lpss-platform.o 40 40 obj-$(CONFIG_PWM_MC33XS2410) += pwm-mc33xs2410.o 41 - obj-$(CONFIG_PWM_MESON) += pwm-meson.o 42 41 obj-$(CONFIG_PWM_MEDIATEK) += pwm-mediatek.o 42 + obj-$(CONFIG_PWM_MESON) += pwm-meson.o 43 43 obj-$(CONFIG_PWM_MICROCHIP_CORE) += pwm-microchip-core.o 44 44 obj-$(CONFIG_PWM_MTK_DISP) += pwm-mtk-disp.o 45 45 obj-$(CONFIG_PWM_MXS) += pwm-mxs.o