All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] Remove references to undefined symbols and fix two potential bugs
@ 2018-02-05  1:21 ` Ulf Magnusson
  0 siblings, 0 replies; 128+ messages in thread
From: Ulf Magnusson @ 2018-02-05  1:21 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-kbuild, tfiga, paul.burton, m.szyprowski, egtvedt,
	linus.walleij, vgupta, mgorman, hch, mina86, robh, sboyd, paulus,
	will.deacon, tony, npiggin, yamada.masahiro, Ulf Magnusson,
	Palmer Dabbelt, Albert Ou, linux-riscv

Hello,

This patchset fixes most references to globally undefined symbols in Kconfig
files, as reported by the
https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py
script. I will send emails in reply to the patchset for some cases where I'm
not sure what the proper fix is.

All of the fixes are independent. I just created a patchset to track them more
easily.

Summary of changes:

 - Commits 1 and 2 fix what looks like potential bugs: A broken (intended)
   select of PL310_ERRATA_753970 for ARM/mvebu, and a misspelled dependency on
   PPC_PSERIES in KVM/PPC.

 - Commits 3-5 remove leftover AVR32 stuff.

 - Commits 6 and 7 remove some selects of removed symbols from riscv.

 - Commits 8-17 remove various references to removed symbols.

 - Commits 18-20 fix some (harmless) malformed defaults.

Ulf Magnusson (20):
  ARM: mvebu: Fix broken PL310_ERRATA_753970 selects
  KVM: PPC: Book3S PR: Fix broken select due to misspelling
  kconfig: Remove leftover references to AVR32 symbol
  misc: atmel: Remove CPU_AT32AP700X (AVR32) reference
  rtc: at32ap700x: Remove PLATFORM_AT32AP dependency
  riscv: Remove ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE select
  riscv: Remove ARCH_WANT_OPTIONAL_GPIOLIB select
  s390/kconfig: Remove ARCH_WANTS_PROT_NUMA_PROT_NONE select
  clk: sunxi-ng: Remove SUNXI_CCU_* selects
  lib/Kconfig: Remove leftover select of GENERIC_IO
  usb: gadget: udc: Remove USB_GADGET_DUALSPEED select
  ARM: debug: Remove ARCH_MSM dep. from UNCOMPRESS_INCLUDE
  ore: Remove PNFS_OBJLAYOUT dependency
  iio: gyro: mpu3050: Remove INPUT_MPU3050 dep. from I2C
  phy: Remove SOC_EXYNOS4212 dep. from PHY_EXYNOS4X12_USB
  auxdisplay: img-ascii-lcd: Remove MIPS_SEAD3 dep.
  media: sec: Remove PLAT_S5P dependency
  iwlwifi: fix malformed CONFIG_IWLWIFI_PCIE_RTPM default
  ARC: Fix malformed ARC_EMUL_UNALIGNED default
  x86/PCI: VMD: Fix malformed default

 arch/arc/Kconfig                           |  1 -
 arch/arm/Kconfig.debug                     |  2 +-
 arch/arm/mach-mvebu/Kconfig                |  4 ++--
 arch/powerpc/kvm/Kconfig                   |  2 +-
 arch/riscv/Kconfig                         |  2 --
 arch/s390/Kconfig                          |  1 -
 drivers/auxdisplay/Kconfig                 |  2 +-
 drivers/clk/sunxi-ng/Kconfig               |  7 -------
 drivers/cpufreq/Kconfig                    | 10 ----------
 drivers/iio/gyro/Kconfig                   |  1 -
 drivers/media/platform/Kconfig             |  2 +-
 drivers/misc/Kconfig                       |  1 -
 drivers/net/wireless/intel/iwlwifi/Kconfig |  1 -
 drivers/pci/host/Kconfig                   |  1 -
 drivers/phy/samsung/Kconfig                |  2 +-
 drivers/pwm/Kconfig                        |  2 +-
 drivers/rtc/Kconfig                        |  2 +-
 drivers/spi/Kconfig                        |  2 +-
 drivers/usb/gadget/udc/Kconfig             |  1 -
 drivers/video/console/Kconfig              |  2 +-
 fs/exofs/Kconfig.ore                       |  2 +-
 lib/Kconfig                                |  1 -
 22 files changed, 12 insertions(+), 39 deletions(-)

-- 
2.14.1

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

end of thread, other threads:[~2018-02-19 17:03 UTC | newest]

Thread overview: 128+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-05  1:21 [PATCH 00/20] Remove references to undefined symbols and fix two potential bugs Ulf Magnusson
2018-02-05  1:21 ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 01/20] ARM: mvebu: Fix broken PL310_ERRATA_753970 selects Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-13 15:43   ` Gregory CLEMENT
2018-02-13 15:43     ` Gregory CLEMENT
2018-02-05  1:21 ` [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05  4:48   ` Paul Mackerras
2018-02-05  4:48     ` Paul Mackerras
2018-02-05  4:58     ` Ulf Magnusson
2018-02-05  4:58       ` Ulf Magnusson
2018-02-05  7:56       ` Paul Mackerras
2018-02-05  7:56         ` Paul Mackerras
2018-02-05  1:21 ` [PATCH 03/20] kconfig: Remove leftover references to AVR32 symbol Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05  4:05   ` Viresh Kumar
2018-02-05  4:17     ` Viresh Kumar
2018-02-05  4:05     ` Viresh Kumar
2018-02-05  4:44     ` [PATCH v2 " Ulf Magnusson
2018-02-05  4:44       ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 04/20] misc: atmel: Remove CPU_AT32AP700X (AVR32) reference Ulf Magnusson
2018-02-05  1:21 ` [PATCH 05/20] rtc: at32ap700x: Remove PLATFORM_AT32AP dependency Ulf Magnusson
2018-02-05  1:42   ` Ulf Magnusson
2018-02-05 14:01     ` Alexandre Belloni
2018-02-05 20:31       ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 06/20] riscv: Remove ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE select Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05 10:45   ` Jonathan Neuschäfer
2018-02-05 10:45     ` Jonathan Neuschäfer
2018-02-08 18:34   ` Palmer Dabbelt
2018-02-08 18:34     ` Palmer Dabbelt
2018-02-08 18:34     ` Palmer Dabbelt
2018-02-08 22:10     ` Ulf Magnusson
2018-02-08 22:10       ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 07/20] riscv: Remove ARCH_WANT_OPTIONAL_GPIOLIB select Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05  1:30   ` Ulf Magnusson
2018-02-05  1:30     ` Ulf Magnusson
2018-02-08 20:51     ` Palmer Dabbelt
2018-02-08 20:51       ` Palmer Dabbelt
2018-02-08 20:51       ` Palmer Dabbelt
2018-02-08 22:54       ` [PATCH] riscv: kconfig: Remove RISCV_IRQ_INTC select Ulf Magnusson
2018-02-08 22:54         ` Ulf Magnusson
2018-02-13  2:07         ` Palmer Dabbelt
2018-02-13  2:07           ` Palmer Dabbelt
2018-02-05 23:25   ` [PATCH 07/20] riscv: Remove ARCH_WANT_OPTIONAL_GPIOLIB select Linus Walleij
2018-02-05 23:25     ` Linus Walleij
2018-02-05 23:38     ` Ulf Magnusson
2018-02-05 23:38       ` Ulf Magnusson
2018-02-05 23:49       ` Ulf Magnusson
2018-02-05 23:49         ` Ulf Magnusson
2018-02-06  9:49         ` Linus Walleij
2018-02-06  9:49           ` Linus Walleij
2018-02-06  9:47   ` Linus Walleij
2018-02-06  9:47     ` Linus Walleij
2018-02-08 22:58     ` Palmer Dabbelt
2018-02-08 22:58       ` Palmer Dabbelt
2018-02-08 18:34   ` Palmer Dabbelt
2018-02-08 18:34     ` Palmer Dabbelt
2018-02-08 18:34     ` Palmer Dabbelt
2018-02-08 22:56     ` Ulf Magnusson
2018-02-08 22:56       ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 08/20] s390/kconfig: Remove ARCH_WANTS_PROT_NUMA_PROT_NONE select Ulf Magnusson
2018-02-05  6:56   ` Heiko Carstens
2018-02-05  1:21 ` [PATCH 09/20] clk: sunxi-ng: Remove SUNXI_CCU_* selects Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05 13:46   ` Maxime Ripard
2018-02-05 13:46     ` Maxime Ripard
2018-02-05  1:21 ` [PATCH 10/20] lib/Kconfig: Remove leftover select of GENERIC_IO Ulf Magnusson
2018-02-06 16:08   ` Rob Herring
2018-02-06 16:16   ` Robin Murphy
2018-02-19 15:48   ` Rob Herring
2018-02-19 17:03     ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 11/20] usb: gadget: udc: Remove USB_GADGET_DUALSPEED select Ulf Magnusson
2018-02-05  1:21   ` [11/20] " Ulf Magnusson
2018-02-05  1:21 ` [PATCH 12/20] ARM: debug: Remove ARCH_MSM dep. from UNCOMPRESS_INCLUDE Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05  1:46   ` Ulf Magnusson
2018-02-05  1:46     ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 13/20] ore: Remove PNFS_OBJLAYOUT dependency Ulf Magnusson
2018-02-05  1:21 ` [PATCH 14/20] iio: gyro: mpu3050: Remove INPUT_MPU3050 dep. from I2C Ulf Magnusson
2018-02-07 12:10   ` Linus Walleij
2018-02-05  1:21 ` [PATCH 15/20] phy: Remove SOC_EXYNOS4212 dep. from PHY_EXYNOS4X12_USB Ulf Magnusson
2018-02-05  8:00   ` Krzysztof Kozlowski
2018-02-16 11:52     ` Kishon Vijay Abraham I
2018-02-16 11:52       ` Kishon Vijay Abraham I
2018-02-05  1:21 ` [PATCH 16/20] auxdisplay: img-ascii-lcd: Remove MIPS_SEAD3 dep Ulf Magnusson
2018-02-05  1:58   ` Ulf Magnusson
2018-02-06 18:09     ` Randy Dunlap
2018-02-08 15:37   ` Miguel Ojeda
2018-02-10 14:14     ` [PATCH v2] auxdisplay: img-ascii-lcd: kconfig: Remove MIPS_SEAD3 reference Ulf Magnusson
2018-02-11 16:40       ` Miguel Ojeda
2018-02-12 13:51         ` Miguel Ojeda
2018-02-08 17:35   ` [PATCH 16/20] auxdisplay: img-ascii-lcd: Remove MIPS_SEAD3 dep James Hogan
2018-02-10 14:19     ` Ulf Magnusson
2018-02-05  1:21 ` [PATCH 17/20] media: sec: Remove PLAT_S5P dependency Ulf Magnusson
2018-02-05  1:21 ` [PATCH 18/20] iwlwifi: fix malformed CONFIG_IWLWIFI_PCIE_RTPM default Ulf Magnusson
2018-02-15  7:35   ` Luciano Coelho
2018-02-05  1:21 ` [PATCH 19/20] ARC: Fix malformed ARC_EMUL_UNALIGNED default Ulf Magnusson
2018-02-05  1:21   ` Ulf Magnusson
2018-02-05 17:17   ` Vineet Gupta
2018-02-05 17:17     ` Vineet Gupta
2018-02-05 17:17     ` Vineet Gupta
2018-02-05  1:21 ` [PATCH 20/20] x86/PCI: VMD: Fix malformed default Ulf Magnusson
2018-02-05  2:03   ` Ulf Magnusson
2018-02-06 19:11   ` Bjorn Helgaas
2018-02-06 22:17     ` Ulf Magnusson
2018-02-05  1:37 ` [PATCH 00/20] Remove references to undefined symbols and fix two potential bugs Ulf Magnusson
2018-02-05  1:37   ` Ulf Magnusson
2018-02-05  1:52 ` Ulf Magnusson
2018-02-05  1:52   ` Ulf Magnusson
2018-02-05  2:08 ` Ulf Magnusson
2018-02-05  2:08   ` Ulf Magnusson
2018-02-07  9:28   ` Robert Jarzmik
2018-02-07  9:28     ` Robert Jarzmik
2018-02-08 23:15     ` [PATCH] ALSA: ac97: kconfig: Remove select of undefined symbol AC97 Ulf Magnusson
2018-02-08 23:15       ` Ulf Magnusson
2018-02-08 23:20       ` Ulf Magnusson
2018-02-08 23:20         ` Ulf Magnusson
2018-02-12  7:17         ` Takashi Iwai
2018-02-12  7:17           ` Takashi Iwai
2018-02-12  7:17           ` Takashi Iwai
2018-02-12  7:17           ` Takashi Iwai
2018-02-05  4:15 ` [PATCH 00/20] Remove references to undefined symbols and fix two potential bugs Ulf Magnusson
2018-02-05  4:15   ` Ulf Magnusson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.