[PATCH] hwmon: pmbus: fix table in STEF48H28 documentation

Randy Dunlap posted 1 patch 1 week, 3 days ago
Documentation/hwmon/stef48h28.rst |   10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
[PATCH] hwmon: pmbus: fix table in STEF48H28 documentation
Posted by Randy Dunlap 1 week, 3 days ago
"make htmldocs" reports build errors/warnings:

Documentation/hwmon/stef48h28.rst:45: ERROR: Missing matching underline for section title overline.
=========================================================
in1_label               "vin".
in1_input               Measured voltage. From READ_VIN register. [docutils]
Documentation/hwmon/stef48h28.rst:73: WARNING: Title underline too short.
temp2_input             Measured temperature. From READ_TEMPERATURE_2 register.
========================================================= [docutils]

Fix the table overline/underline line lengths and convert it to
a 2-column table.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Cc: Charles Hsu <hsu.yungteng@gmail.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Shuah Khan <skhan@linuxfoundation.org>
Cc: linux-doc@vger.kernel.org

 Documentation/hwmon/stef48h28.rst |   10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

--- linux-next-20260126.orig/Documentation/hwmon/stef48h28.rst
+++ linux-next-20260126/Documentation/hwmon/stef48h28.rst
@@ -42,7 +42,7 @@ The driver supports standard PMBus drive
 Sysfs entries
 -------------
 
-=========================================================
+======================  ========================================================
 in1_label		"vin".
 in1_input		Measured voltage. From READ_VIN register.
 in1_min			Minimum Voltage. From VIN_UV_WARN_LIMIT register.
@@ -53,11 +53,9 @@ in2_input		Measured voltage. From READ_V
 in2_min			Minimum Voltage. From VOUT_UV_WARN_LIMIT register.
 in2_max			Maximum voltage. From VOUT_OV_WARN_LIMIT register.
 
-curr1_label "iin".
-curr1_input Measured current. From READ_IIN register.
+curr1_label "iin".      curr1_input Measured current. From READ_IIN register.
 
-curr2_label "iout1".
-curr2_input Measured current. From READ_IOUT register.
+curr2_label "iout1".    curr2_input Measured current. From READ_IOUT register.
 
 power1_label		"pin"
 power1_input		Measured input power. From READ_PIN register.
@@ -70,4 +68,4 @@ temp1_max		Maximum temperature. From OT_
 temp1_crit		Critical high temperature. From OT_FAULT_LIMIT register.
 
 temp2_input		Measured temperature. From READ_TEMPERATURE_2 register.
-=========================================================
+======================  ========================================================
Re: [PATCH] hwmon: pmbus: fix table in STEF48H28 documentation
Posted by Guenter Roeck 1 week, 2 days ago
On Tue, Jan 27, 2026 at 04:22:00PM -0800, Randy Dunlap wrote:
> "make htmldocs" reports build errors/warnings:
> 
> Documentation/hwmon/stef48h28.rst:45: ERROR: Missing matching underline for section title overline.
> =========================================================
> in1_label               "vin".
> in1_input               Measured voltage. From READ_VIN register. [docutils]
> Documentation/hwmon/stef48h28.rst:73: WARNING: Title underline too short.
> temp2_input             Measured temperature. From READ_TEMPERATURE_2 register.
> ========================================================= [docutils]
> 
> Fix the table overline/underline line lengths and convert it to
> a 2-column table.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>

Applied.

Thanks,
Guenter