linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/15] ARM: Drop unneeded select of multi-platform selected options
@ 2020-05-05 15:07 Geert Uytterhoeven
  2020-05-05 15:07 ` [PATCH v2 01/15] ARM: arch timer: Drop unneeded select GENERIC_CLOCKEVENTS Geert Uytterhoeven
                   ` (14 more replies)
  0 siblings, 15 replies; 24+ messages in thread
From: Geert Uytterhoeven @ 2020-05-05 15:07 UTC (permalink / raw)
  To: soc
  Cc: Arnd Bergmann, Kevin Hilman, Olof Johansson, linux-arm-kernel,
	linux-kernel, Geert Uytterhoeven

	Hi arm-soc folks,

This patch series drops select statements from the various
platform-specific Kconfig files, for symbols that are already selected
by the various multi-platform related config options
(ARCH_MULTIPLATFORM, ARCH_MULTI_V*, and ARM_SINGLE_ARMV7M).
This makes it easier to e.g. identify platforms that are not yet part of
multi-platform builds, but already use some multi-platform features
(e.g. "COMMON_CLK" is used by multi-platform + s3c24xx).

This series contains the patches from [1] and [2] that haven't been
applied yet.

Changes compared to v1:
  - Add Acked-by, Reviewed-by.

Thanks for applying!

[1] "[PATCH] ARM: arch timer: Drop unneeded select GENERIC_CLOCKEVENTS"
    https://lore.kernel.org/r/20200121100608.32218-1-geert+renesas@glider.be
[2] "[PATCH 00/20] ARM: Drop unneeded select of multi-platform selected
     options"
    https://lore.kernel.org/r/20200121103413.1337-1-geert+renesas@glider.be

Geert Uytterhoeven (15):
  ARM: arch timer: Drop unneeded select GENERIC_CLOCKEVENTS
  ARM: actions: Drop unneeded select of COMMON_CLK
  ARM: alpine: Drop unneeded select of HAVE_SMP
  ARM: asm9260: Drop unneeded select of GENERIC_CLOCKEVENTS
  ARM: aspeed: Drop unneeded select of HAVE_SMP
  ARM: berlin: Drop unneeded select of HAVE_SMP
  ARM: clps711x: Drop unneeded select of multi-platform selected options
  ARM: davinci: Drop unneeded select of TIMER_OF
  ARM: integrator: Drop unneeded select of SPARSE_IRQ
  ARM: mmp: Drop unneeded select of COMMON_CLK
  ARM: mvebu: Drop unneeded select of HAVE_SMP
  ARM: omap2plus: Drop unneeded select of MIGHT_HAVE_CACHE_L2X0
  ARM: prima2: Drop unneeded select of HAVE_SMP
  ARM: realview: Drop unneeded select of multi-platform features
  ARM: socfpga: Drop unneeded select of PCI_DOMAINS_GENERIC

 arch/arm/Kconfig                 | 1 -
 arch/arm/mach-actions/Kconfig    | 1 -
 arch/arm/mach-alpine/Kconfig     | 1 -
 arch/arm/mach-asm9260/Kconfig    | 1 -
 arch/arm/mach-aspeed/Kconfig     | 1 -
 arch/arm/mach-berlin/Kconfig     | 1 -
 arch/arm/mach-clps711x/Kconfig   | 5 -----
 arch/arm/mach-davinci/Kconfig    | 1 -
 arch/arm/mach-integrator/Kconfig | 1 -
 arch/arm/mach-mmp/Kconfig        | 1 -
 arch/arm/mach-mvebu/Kconfig      | 3 ---
 arch/arm/mach-omap2/Kconfig      | 1 -
 arch/arm/mach-prima2/Kconfig     | 1 -
 arch/arm/mach-realview/Kconfig   | 8 --------
 arch/arm/mach-socfpga/Kconfig    | 1 -
 15 files changed, 28 deletions(-)

-- 
2.17.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2020-05-22 10:37 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-05 15:07 [PATCH v2 00/15] ARM: Drop unneeded select of multi-platform selected options Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 01/15] ARM: arch timer: Drop unneeded select GENERIC_CLOCKEVENTS Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 02/15] ARM: actions: Drop unneeded select of COMMON_CLK Geert Uytterhoeven
2020-05-05 16:04   ` Andreas Färber
2020-05-05 16:45     ` Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 03/15] ARM: alpine: Drop unneeded select of HAVE_SMP Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 04/15] ARM: asm9260: Drop unneeded select of GENERIC_CLOCKEVENTS Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 05/15] ARM: aspeed: Drop unneeded select of HAVE_SMP Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 06/15] ARM: berlin: " Geert Uytterhoeven
2020-05-22 10:12   ` Jisheng Zhang
2020-05-22 10:34     ` Arnd Bergmann
2020-05-22 10:36       ` Jisheng Zhang
2020-05-05 15:07 ` [PATCH v2 07/15] ARM: clps711x: Drop unneeded select of multi-platform selected options Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 08/15] ARM: davinci: Drop unneeded select of TIMER_OF Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 09/15] ARM: integrator: Drop unneeded select of SPARSE_IRQ Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 10/15] ARM: mmp: Drop unneeded select of COMMON_CLK Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 11/15] ARM: mvebu: Drop unneeded select of HAVE_SMP Geert Uytterhoeven
2020-05-05 15:13   ` Andrew Lunn
2020-05-05 15:07 ` [PATCH v2 12/15] ARM: omap2plus: Drop unneeded select of MIGHT_HAVE_CACHE_L2X0 Geert Uytterhoeven
2020-05-05 18:26   ` Tony Lindgren
2020-05-07 17:49     ` Tony Lindgren
2020-05-05 15:07 ` [PATCH v2 13/15] ARM: prima2: Drop unneeded select of HAVE_SMP Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 14/15] ARM: realview: Drop unneeded select of multi-platform features Geert Uytterhoeven
2020-05-05 15:07 ` [PATCH v2 15/15] ARM: socfpga: Drop unneeded select of PCI_DOMAINS_GENERIC Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).