Skip to content

Commit 323fd59

Browse files
jdelvarebebarino
authored andcommitted
clk: versatile: Rename ICST to CLK_ICST
For consistency, prefix the ICST config option with CLK as all other clock source drivers have. Signed-off-by: Jean Delvare <[email protected]> Cc: Linus Walleij <[email protected]> Cc: Michael Turquette <[email protected]> Cc: Stephen Boyd <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Link: https://lore.kernel.org/r/20210901180833.4558932d@endymion Signed-off-by: Stephen Boyd <[email protected]>
1 parent 69bfe08 commit 323fd59

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

arch/arm/mach-integrator/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ menuconfig ARCH_INTEGRATOR
66
select CMA
77
select DMA_CMA
88
select HAVE_TCM
9-
select ICST
9+
select CLK_ICST
1010
select MFD_SYSCON
1111
select PLAT_VERSATILE
1212
select POWER_RESET

arch/arm/mach-realview/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ menuconfig ARCH_REALVIEW
1111
select HAVE_ARM_TWD if SMP
1212
select HAVE_PATA_PLATFORM
1313
select HAVE_TCM
14-
select ICST
14+
select CLK_ICST
1515
select MACH_REALVIEW_EB if ARCH_MULTI_V5
1616
select MFD_SYSCON
1717
select PLAT_VERSATILE

arch/arm/mach-versatile/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ config ARCH_VERSATILE
77
select ARM_VIC
88
select CLKSRC_VERSATILE
99
select CPU_ARM926T
10-
select ICST
10+
select CLK_ICST
1111
select MFD_SYSCON
1212
select PLAT_VERSATILE
1313
select POWER_RESET

arch/arm/mach-vexpress/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ menuconfig ARCH_VEXPRESS
1111
select HAVE_ARM_SCU if SMP
1212
select HAVE_ARM_TWD if SMP
1313
select HAVE_PATA_PLATFORM
14-
select ICST
14+
select CLK_ICST
1515
select NO_IOPORT_MAP
1616
select PLAT_VERSATILE
1717
select POWER_RESET

drivers/clk/versatile/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
menu "Clock driver for ARM Reference designs"
44
depends on HAS_IOMEM
55

6-
config ICST
6+
config CLK_ICST
77
bool "Clock driver for ARM Reference designs ICST"
88
select REGMAP_MMIO
99
help

drivers/clk/versatile/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: GPL-2.0-only
22
# Makefile for Versatile-specific clocks
3-
obj-$(CONFIG_ICST) += icst.o clk-icst.o clk-versatile.o
3+
obj-$(CONFIG_CLK_ICST) += icst.o clk-icst.o clk-versatile.o
44
obj-$(CONFIG_INTEGRATOR_IMPD1) += clk-impd1.o
55
obj-$(CONFIG_CLK_SP810) += clk-sp810.o
66
obj-$(CONFIG_CLK_VEXPRESS_OSC) += clk-vexpress-osc.o

0 commit comments

Comments
 (0)