* [PATCH 0/2] docs: fix malformed tables in Chinese translations @ 2025-10-03 16:26 Gopi Krishna Menon 2025-10-03 16:26 ` [PATCH 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon 2025-10-03 16:26 ` [PATCH 2/2] docs/zh_TW: " Gopi Krishna Menon 0 siblings, 2 replies; 7+ messages in thread From: Gopi Krishna Menon @ 2025-10-03 16:26 UTC (permalink / raw) To: 2023002089, corbet, rafael.j.wysocki, superm1, viresh.kumar, qyousef, zhanjie9 Cc: Gopi Krishna Menon, linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid This series fixes htmldocs build errors due to malformed tables in the zh_CN and zh_TW translations of cpu-drivers.rst. Gopi Krishna Menon (2): docs/zh_CN: Fix malformed table docs/zh_TW: Fix malformed table Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst | 2 +- Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- 2.43.0 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] docs/zh_CN: Fix malformed table 2025-10-03 16:26 [PATCH 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon @ 2025-10-03 16:26 ` Gopi Krishna Menon 2025-10-03 16:26 ` [PATCH 2/2] docs/zh_TW: " Gopi Krishna Menon 1 sibling, 0 replies; 7+ messages in thread From: Gopi Krishna Menon @ 2025-10-03 16:26 UTC (permalink / raw) To: 2023002089, corbet, rafael.j.wysocki, superm1, viresh.kumar, qyousef, zhanjie9 Cc: Gopi Krishna Menon, linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid Running "make htmldocs" generates the following build error in zh_CN/cpu-freq/cpu-drivers.rst: Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst:109: ERROR: Malformed table. Fix the table formatting to resolve the error. Signed-off-by: Gopi Krishna Menon <krishnagopi487@gmail.com> --- Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst b/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst index 8238f4c6e4f5..2d5e84d8e58d 100644 --- a/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst +++ b/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst @@ -112,7 +112,7 @@ CPUfreq核心层注册一个cpufreq_driver结构体。 | | | +-----------------------------------+--------------------------------------+ |policy->cpuinfo.transition_latency | CPU在两个频率之间切换所需的时间,以 | -| | 纳秒为单位 | +| | 纳秒为单位 | | | | +-----------------------------------+--------------------------------------+ |policy->cur | 该CPU当前的工作频率(如适用) | -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] docs/zh_TW: Fix malformed table 2025-10-03 16:26 [PATCH 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon 2025-10-03 16:26 ` [PATCH 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon @ 2025-10-03 16:26 ` Gopi Krishna Menon 2025-10-03 17:35 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon 1 sibling, 1 reply; 7+ messages in thread From: Gopi Krishna Menon @ 2025-10-03 16:26 UTC (permalink / raw) To: 2023002089, corbet, rafael.j.wysocki, superm1, viresh.kumar, qyousef, zhanjie9 Cc: Gopi Krishna Menon, linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid Running "make htmldocs" generate the following build error in zh_TW/cpu-freq/cpu-drivers.rst: Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst:109: ERROR: Malformed table. Fix the table formatting to resolve the error. Signed-off-by: Gopi Krishna Menon <krishnagopi487@gmail.com> --- Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst b/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst index 5435c3928d4b..7f751a7add56 100644 --- a/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst +++ b/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst @@ -112,7 +112,7 @@ CPUfreq核心層註冊一個cpufreq_driver結構體。 | | | +-----------------------------------+--------------------------------------+ |policy->cpuinfo.transition_latency | CPU在兩個頻率之間切換所需的時間,以 | -| | 納秒爲單位 | +| | 納秒爲單位 | | | | +-----------------------------------+--------------------------------------+ |policy->cur | 該CPU當前的工作頻率(如適用) | -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v2 0/2] docs: fix malformed tables in Chinese translations 2025-10-03 16:26 ` [PATCH 2/2] docs/zh_TW: " Gopi Krishna Menon @ 2025-10-03 17:35 ` Gopi Krishna Menon 2025-10-03 17:35 ` [PATCH v2 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon ` (2 more replies) 0 siblings, 3 replies; 7+ messages in thread From: Gopi Krishna Menon @ 2025-10-03 17:35 UTC (permalink / raw) To: alexs, si.yanteng, dzm91, corbet, zhanjie9, viresh.kumar, rafael.j.wysocki, superm1, 2023002089, qyousef Cc: Gopi Krishna Menon, linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid This series fixes htmldocs build errors due to malformed tables in the zh_CN and zh_TW translations of cpu-drivers.rst. Changelog: - Adding missing TOs to the relevant maintainers. Gopi Krishna Menon (2): docs/zh_CN: Fix malformed table docs/zh_TW: Fix malformed table Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst | 2 +- Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- 2.43.0 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 1/2] docs/zh_CN: Fix malformed table 2025-10-03 17:35 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon @ 2025-10-03 17:35 ` Gopi Krishna Menon 2025-10-03 17:36 ` [PATCH v2 2/2] docs/zh_TW: " Gopi Krishna Menon 2025-10-03 21:28 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Wysocki, Rafael J 2 siblings, 0 replies; 7+ messages in thread From: Gopi Krishna Menon @ 2025-10-03 17:35 UTC (permalink / raw) To: alexs, si.yanteng, dzm91, corbet, zhanjie9, viresh.kumar, rafael.j.wysocki, superm1 Cc: Gopi Krishna Menon, linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid Running "make htmldocs" generates the following build error in zh_CN/cpu-freq/cpu-drivers.rst: Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst:109: ERROR: Malformed table. Fix the table formatting to resolve the error. Signed-off-by: Gopi Krishna Menon <krishnagopi487@gmail.com> --- Changelog: - Adding missing TOs to the relevant maintainers. Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst b/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst index 8238f4c6e4f5..2d5e84d8e58d 100644 --- a/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst +++ b/Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst @@ -112,7 +112,7 @@ CPUfreq核心层注册一个cpufreq_driver结构体。 | | | +-----------------------------------+--------------------------------------+ |policy->cpuinfo.transition_latency | CPU在两个频率之间切换所需的时间,以 | -| | 纳秒为单位 | +| | 纳秒为单位 | | | | +-----------------------------------+--------------------------------------+ |policy->cur | 该CPU当前的工作频率(如适用) | -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v2 2/2] docs/zh_TW: Fix malformed table 2025-10-03 17:35 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon 2025-10-03 17:35 ` [PATCH v2 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon @ 2025-10-03 17:36 ` Gopi Krishna Menon 2025-10-03 21:28 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Wysocki, Rafael J 2 siblings, 0 replies; 7+ messages in thread From: Gopi Krishna Menon @ 2025-10-03 17:36 UTC (permalink / raw) To: corbet, zhanjie9, rafael.j.wysocki, superm1, 2023002089, qyousef Cc: Gopi Krishna Menon, linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid Running "make htmldocs" generate the following build error in zh_TW/cpu-freq/cpu-drivers.rst: Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst:109: ERROR: Malformed table. Fix the table formatting to resolve the error. Signed-off-by: Gopi Krishna Menon <krishnagopi487@gmail.com> --- Changelog: - Adding missing TOs to the relevant maintainers. Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst b/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst index 5435c3928d4b..7f751a7add56 100644 --- a/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst +++ b/Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst @@ -112,7 +112,7 @@ CPUfreq核心層註冊一個cpufreq_driver結構體。 | | | +-----------------------------------+--------------------------------------+ |policy->cpuinfo.transition_latency | CPU在兩個頻率之間切換所需的時間,以 | -| | 納秒爲單位 | +| | 納秒爲單位 | | | | +-----------------------------------+--------------------------------------+ |policy->cur | 該CPU當前的工作頻率(如適用) | -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 0/2] docs: fix malformed tables in Chinese translations 2025-10-03 17:35 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon 2025-10-03 17:35 ` [PATCH v2 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon 2025-10-03 17:36 ` [PATCH v2 2/2] docs/zh_TW: " Gopi Krishna Menon @ 2025-10-03 21:28 ` Wysocki, Rafael J 2 siblings, 0 replies; 7+ messages in thread From: Wysocki, Rafael J @ 2025-10-03 21:28 UTC (permalink / raw) To: Gopi Krishna Menon, alexs, si.yanteng, dzm91, corbet, zhanjie9, viresh.kumar, superm1, 2023002089, qyousef Cc: linux-doc, linux-kernel, linux-kernel-mentees, skhan, david.hunter.linux, khalid, linux-pm@vger.kernel.org On 10/3/2025 7:35 PM, Gopi Krishna Menon wrote: > This series fixes htmldocs build errors due to malformed tables > in the zh_CN and zh_TW translations of cpu-drivers.rst. > > Changelog: > - Adding missing TOs to the relevant maintainers. > > Gopi Krishna Menon (2): > docs/zh_CN: Fix malformed table > docs/zh_TW: Fix malformed table > > Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst | 2 +- > Documentation/translations/zh_TW/cpu-freq/cpu-drivers.rst | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Both patches applied as 6.18 material, thanks! ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-10-03 21:28 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-10-03 16:26 [PATCH 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon 2025-10-03 16:26 ` [PATCH 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon 2025-10-03 16:26 ` [PATCH 2/2] docs/zh_TW: " Gopi Krishna Menon 2025-10-03 17:35 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Gopi Krishna Menon 2025-10-03 17:35 ` [PATCH v2 1/2] docs/zh_CN: Fix malformed table Gopi Krishna Menon 2025-10-03 17:36 ` [PATCH v2 2/2] docs/zh_TW: " Gopi Krishna Menon 2025-10-03 21:28 ` [PATCH v2 0/2] docs: fix malformed tables in Chinese translations Wysocki, Rafael J
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox