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

Eric Biggers posted 5 patches 11 months, 1 week ago
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(-)
[PATCH 0/5] Remove unnecessary prompts for CRC library (batch 1)
Posted by Eric Biggers 11 months, 1 week ago
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
-- 
2.48.1
Re: [PATCH 0/5] Remove unnecessary prompts for CRC library (batch 1)
Posted by Ard Biesheuvel 11 months, 1 week ago
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>
Re: [PATCH 0/5] Remove unnecessary prompts for CRC library (batch 1)
Posted by Eric Biggers 11 months, 1 week ago
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