* [PATCH 1/2] kconfig: use bool instead of boolean for type definition attributes, again
@ 2017-12-15 15:38 Masahiro Yamada
[not found] ` <1513352282-4437-1-git-send-email-yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
2018-01-11 15:39 ` Masahiro Yamada
0 siblings, 2 replies; 3+ messages in thread
From: Masahiro Yamada @ 2017-12-15 15:38 UTC (permalink / raw)
To: linux-kbuild
Cc: Nicolas Pitre, Luis R . Rodriguez, Randy Dunlap, Michal Marek,
Sam Ravnborg, Ulf Magnusson, Masahiro Yamada, devel, linux-efi,
linux-kernel, Matt Fleming, Greg Kroah-Hartman, Ard Biesheuvel
Commit 6341e62b212a ("kconfig: use bool instead of boolean for type
definition attributes") did treewide replacement of 'boolean', and
also mentioned the keyword 'boolean' would be dropped later on.
Some years have passed, but it has not happened yet. Meanwhile, some
new instances have come up.
I am really going to drop this keyword. I need to do the replacement
once again.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---
drivers/firmware/efi/Kconfig | 2 +-
drivers/staging/rtlwifi/Kconfig | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/firmware/efi/Kconfig b/drivers/firmware/efi/Kconfig
index 2b4c39f..3abdda1 100644
--- a/drivers/firmware/efi/Kconfig
+++ b/drivers/firmware/efi/Kconfig
@@ -113,7 +113,7 @@ config EFI_CAPSULE_LOADER
Most users should say N.
config EFI_CAPSULE_QUIRK_QUARK_CSH
- boolean "Add support for Quark capsules with non-standard headers"
+ bool "Add support for Quark capsules with non-standard headers"
depends on X86 && !64BIT
select EFI_CAPSULE_LOADER
default y
diff --git a/drivers/staging/rtlwifi/Kconfig b/drivers/staging/rtlwifi/Kconfig
index cb3a29a..12cf467 100644
--- a/drivers/staging/rtlwifi/Kconfig
+++ b/drivers/staging/rtlwifi/Kconfig
@@ -17,6 +17,6 @@ config RTLPHYDM_ST
default m
config RTLWIFI_DEBUG_ST
- boolean
+ bool
depends on R8822BE
default y
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] kconfig: use bool instead of boolean for type definition attributes, again
[not found] ` <1513352282-4437-1-git-send-email-yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
@ 2017-12-15 19:06 ` Greg Kroah-Hartman
0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2017-12-15 19:06 UTC (permalink / raw)
To: Masahiro Yamada
Cc: linux-kbuild-u79uwXL29TY76Z2rM5mHXA, Nicolas Pitre,
Luis R . Rodriguez, Randy Dunlap, Michal Marek, Sam Ravnborg,
Ulf Magnusson, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b,
linux-efi-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Matt Fleming, Ard Biesheuvel
On Sat, Dec 16, 2017 at 12:38:01AM +0900, Masahiro Yamada wrote:
> Commit 6341e62b212a ("kconfig: use bool instead of boolean for type
> definition attributes") did treewide replacement of 'boolean', and
> also mentioned the keyword 'boolean' would be dropped later on.
>
> Some years have passed, but it has not happened yet. Meanwhile, some
> new instances have come up.
>
> I am really going to drop this keyword. I need to do the replacement
> once again.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
> ---
>
> drivers/firmware/efi/Kconfig | 2 +-
> drivers/staging/rtlwifi/Kconfig | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Acked-by: Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] kconfig: use bool instead of boolean for type definition attributes, again
2017-12-15 15:38 [PATCH 1/2] kconfig: use bool instead of boolean for type definition attributes, again Masahiro Yamada
[not found] ` <1513352282-4437-1-git-send-email-yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
@ 2018-01-11 15:39 ` Masahiro Yamada
1 sibling, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2018-01-11 15:39 UTC (permalink / raw)
To: Linux Kbuild mailing list
Cc: Nicolas Pitre, Luis R . Rodriguez, Randy Dunlap, Michal Marek,
Sam Ravnborg, Ulf Magnusson, Masahiro Yamada, devel, linux-efi,
Linux Kernel Mailing List, Matt Fleming, Greg Kroah-Hartman,
Ard Biesheuvel
2017-12-16 0:38 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> Commit 6341e62b212a ("kconfig: use bool instead of boolean for type
> definition attributes") did treewide replacement of 'boolean', and
> also mentioned the keyword 'boolean' would be dropped later on.
>
> Some years have passed, but it has not happened yet. Meanwhile, some
> new instances have come up.
>
> I am really going to drop this keyword. I need to do the replacement
> once again.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
Applied to linux-kbuild/kconfig.
--
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-01-11 15:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-15 15:38 [PATCH 1/2] kconfig: use bool instead of boolean for type definition attributes, again Masahiro Yamada
[not found] ` <1513352282-4437-1-git-send-email-yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
2017-12-15 19:06 ` Greg Kroah-Hartman
2018-01-11 15:39 ` Masahiro Yamada
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).