mbox series

[0/5] Remove unnecessary prompts for CRC library (batch 1)

Message ID 20250304230712.167600-1-ebiggers@kernel.org
Headers show
Series Remove unnecessary prompts for CRC library (batch 1) | expand

Message

Eric Biggers March 4, 2025, 11:07 p.m. UTC
Library functions are already selected when they are needed, so there is
no need to ask users whether to enable them or not.  This patchset fixes
this for the first batch of CRC library options.

There will be a batch 2 later to handle the rest.

Eric Biggers (5):
  lib/crc: remove unnecessary prompt for CONFIG_CRC4
  lib/crc: remove unnecessary prompt for CONFIG_CRC7
  lib/crc: remove unnecessary prompt for CONFIG_CRC8
  lib/crc: remove unnecessary prompt for CONFIG_LIBCRC32C
  lib/crc: remove unnecessary prompt for CONFIG_CRC64

 arch/arm/configs/dove_defconfig              |  1 -
 arch/arm/configs/ep93xx_defconfig            |  1 -
 arch/arm/configs/imx_v6_v7_defconfig         |  2 --
 arch/arm/configs/lpc18xx_defconfig           |  1 -
 arch/arm/configs/multi_v5_defconfig          |  1 -
 arch/arm/configs/mvebu_v5_defconfig          |  1 -
 arch/arm/configs/mxs_defconfig               |  1 -
 arch/arm/configs/omap1_defconfig             |  1 -
 arch/arm/configs/omap2plus_defconfig         |  2 --
 arch/arm/configs/spitz_defconfig             |  1 -
 arch/arm/configs/stm32_defconfig             |  1 -
 arch/arm/configs/wpcm450_defconfig           |  1 -
 arch/hexagon/configs/comet_defconfig         |  1 -
 arch/mips/configs/bigsur_defconfig           |  1 -
 arch/mips/configs/cobalt_defconfig           |  1 -
 arch/mips/configs/fuloong2e_defconfig        |  1 -
 arch/mips/configs/ip32_defconfig             |  1 -
 arch/parisc/configs/generic-64bit_defconfig  |  1 -
 arch/powerpc/configs/85xx/ge_imp3a_defconfig |  1 -
 arch/powerpc/configs/skiroot_defconfig       |  1 -
 arch/s390/configs/debug_defconfig            |  3 --
 arch/s390/configs/defconfig                  |  3 --
 arch/sh/configs/se7206_defconfig             |  2 --
 arch/sh/configs/sh2007_defconfig             |  1 -
 arch/sh/configs/titan_defconfig              |  1 -
 arch/sparc/configs/sparc32_defconfig         |  1 -
 arch/sparc/configs/sparc64_defconfig         |  1 -
 lib/Kconfig                                  | 29 ++++----------------
 28 files changed, 5 insertions(+), 58 deletions(-)


base-commit: 13f3d13d88b5dcba104a204fcbee61c75f8407d0

Comments

Ard Biesheuvel March 6, 2025, 8:16 a.m. UTC | #1
On Wed, 5 Mar 2025 at 00:08, Eric Biggers <ebiggers@kernel.org> wrote:
>
> Library functions are already selected when they are needed, so there is
> no need to ask users whether to enable them or not.  This patchset fixes
> this for the first batch of CRC library options.
>
> There will be a batch 2 later to handle the rest.
>
> Eric Biggers (5):
>   lib/crc: remove unnecessary prompt for CONFIG_CRC4
>   lib/crc: remove unnecessary prompt for CONFIG_CRC7
>   lib/crc: remove unnecessary prompt for CONFIG_CRC8
>   lib/crc: remove unnecessary prompt for CONFIG_LIBCRC32C
>   lib/crc: remove unnecessary prompt for CONFIG_CRC64
>

Acked-by: Ard Biesheuvel <ardb@kernel.org>
Eric Biggers March 6, 2025, 5:22 p.m. UTC | #2
On Tue, Mar 04, 2025 at 03:07:07PM -0800, Eric Biggers wrote:
> Library functions are already selected when they are needed, so there is
> no need to ask users whether to enable them or not.  This patchset fixes
> this for the first batch of CRC library options.
> 
> There will be a batch 2 later to handle the rest.
> 
> Eric Biggers (5):
>   lib/crc: remove unnecessary prompt for CONFIG_CRC4
>   lib/crc: remove unnecessary prompt for CONFIG_CRC7
>   lib/crc: remove unnecessary prompt for CONFIG_CRC8
>   lib/crc: remove unnecessary prompt for CONFIG_LIBCRC32C
>   lib/crc: remove unnecessary prompt for CONFIG_CRC64
> 

Applied to
https://web.git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git/log/?h=crc-next

- Eric