diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-11 15:48:08 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-20 14:47:45 +0300 |
commit | cd14b01846612f3f3277e97bfbecba4c8cee5ce9 (patch) | |
tree | dda57ead5ef2dd79b2fc0f8a6663fe4b8b722780 /drivers/md/Kconfig | |
parent | 91b69454f93d1c905f3a56bb39856db9a220c791 (diff) | |
download | linux-cd14b01846612f3f3277e97bfbecba4c8cee5ce9.tar.xz |
treewide: replace or remove redundant def_bool in Kconfig files
'def_bool X' is a shorthand for 'bool' plus 'default X'.
'def_bool' is redundant where 'bool' is already present, so 'def_bool X'
can be replaced with 'default X', or removed if X is 'n'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index a743e2c572fc..0392154bbcab 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -519,7 +519,6 @@ config DM_VERITY If unsure, say N. config DM_VERITY_VERIFY_ROOTHASH_SIG - def_bool n bool "Verity data device root hash signature verification support" depends on DM_VERITY select SYSTEM_DATA_VERIFICATION |