[PATCH] MAINTAINERS: Set the field name for subsystem profile section

SeongJae Park posted 1 patch 1 year, 11 months ago
MAINTAINERS | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] MAINTAINERS: Set the field name for subsystem profile section
Posted by SeongJae Park 1 year, 11 months ago
Subsystem profile section entry identifier is not having its field name
that can be parsed by maintainers_include.py, unlike other sections
which have their own human-readable field names.  As a result, profile
sections on rendered rst file is having weird name, 'P:'.  Set the field
name as 'Subsystem Profile'.

Fixes: 4699c504e603 ("Maintainer Handbook: Maintainer Entry Profile")
Signed-off-by: SeongJae Park <sj@kernel.org>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 8d1052fa6a69..25fa30bec35f 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24,7 +24,7 @@ Descriptions of section entries and preferred order
 	   filing info, a direct bug tracker link, or a mailto: URI.
 	C: URI for *chat* protocol, server and channel where developers
 	   usually hang out, for example irc://server/channel.
-	P: Subsystem Profile document for more details submitting
+	P: *Subsystem Profile* document for more details submitting
 	   patches to the given subsystem. This is either an in-tree file,
 	   or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
 	   for details.
-- 
2.39.2
Re: [PATCH] MAINTAINERS: Set the field name for subsystem profile section
Posted by Jonathan Corbet 1 year, 11 months ago
SeongJae Park <sj@kernel.org> writes:

> Subsystem profile section entry identifier is not having its field name
> that can be parsed by maintainers_include.py, unlike other sections
> which have their own human-readable field names.  As a result, profile
> sections on rendered rst file is having weird name, 'P:'.  Set the field
> name as 'Subsystem Profile'.
>
> Fixes: 4699c504e603 ("Maintainer Handbook: Maintainer Entry Profile")
> Signed-off-by: SeongJae Park <sj@kernel.org>
> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 8d1052fa6a69..25fa30bec35f 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -24,7 +24,7 @@ Descriptions of section entries and preferred order
>  	   filing info, a direct bug tracker link, or a mailto: URI.
>  	C: URI for *chat* protocol, server and channel where developers
>  	   usually hang out, for example irc://server/channel.
> -	P: Subsystem Profile document for more details submitting
> +	P: *Subsystem Profile* document for more details submitting
>  	   patches to the given subsystem. This is either an in-tree file,

Applied, thanks.

jon