linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bagas Sanjaya <bagasdotme@gmail.com>
To: Sriman Achanta <srimanachanta@gmail.com>,
	Jiri Kosina <jikos@kernel.org>,
	Benjamin Tissoires <bentiss@kernel.org>,
	linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/4] Documentation: ABI: Document SteelSeries headset sysfs attributes
Date: Mon, 29 Dec 2025 17:04:36 +0700	[thread overview]
Message-ID: <aVJSNAB8AWpPAQFM@archie.me> (raw)
In-Reply-To: <20251228122025.154682-4-srimanachanta@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4103 bytes --]

On Sun, Dec 28, 2025 at 07:20:24AM -0500, Sriman Achanta wrote:
> +What:		/sys/class/hid/drivers/steelseries/<dev>/chatmix_level
> +Date:		January 2025
> +KernelVersion:	6.19
> +Contact:	Sriman Achanta <srimanachanta@gmail.com>
> +Description:
> +		Reports the current balance between Game and Chat audio channels
> +		(ChatMix). This value changes when the physical ChatMix dial
> +		on the headset is adjusted.
> +
> +		Range: 0-128
> +		       0   = 100% Chat / 0% Game
> +		       64  = 50% Chat / 50% Game (Balanced)
> +		       128 = 0% Chat / 100% Game
> +		Access: Read

Sphinx reports htmldocs warnings:

Documentation/ABI/testing/sysfs-driver-hid-steelseries:47: WARNING: Definition list ends without a blank line; unexpected unindent. [docutils]
Documentation/ABI/testing/sysfs-driver-hid-steelseries:35: WARNING: Definition list ends without a blank line; unexpected unindent. [docutils]
Documentation/ABI/testing/sysfs-driver-hid-steelseries:62: WARNING: Definition list ends without a blank line; unexpected unindent. [docutils]

I have to fix up the bullet lists:

---- >8 ----
diff --git a/Documentation/ABI/testing/sysfs-driver-hid-steelseries b/Documentation/ABI/testing/sysfs-driver-hid-steelseries
index 3066dbb486d363..5f6c703d40892a 100644
--- a/Documentation/ABI/testing/sysfs-driver-hid-steelseries
+++ b/Documentation/ABI/testing/sysfs-driver-hid-steelseries
@@ -30,6 +30,7 @@ Description:
 		the headset speakers.
 
 		Range: 0-128 (mapped internally to device-specific values).
+
 		Access: Write
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/inactive_time
@@ -42,6 +43,7 @@ Description:
 
 		Range: 0-90 (minutes).
 		       Some devices (e.g., Arctis 1/7X) map this to specific presets.
+
 		Access: Write
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/chatmix_level
@@ -53,10 +55,12 @@ Description:
 		(ChatMix). This value changes when the physical ChatMix dial
 		on the headset is adjusted.
 
-		Range: 0-128
-		       0   = 100% Chat / 0% Game
-		       64  = 50% Chat / 50% Game (Balanced)
-		       128 = 0% Chat / 100% Game
+		Range: 0-128, where:
+
+		- 0   = 100% Chat / 0% Game
+		- 64  = 50% Chat / 50% Game (Balanced)
+		- 128 = 0% Chat / 100% Game
+
 		Access: Read
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/mic_mute_led_brightness
@@ -67,8 +71,11 @@ Description:
 		Controls the brightness of the LED on the microphone boom that
 		indicates when the microphone is muted.
 
-		Range: 0-3 (off, low, medium, high) for most devices.
-		       0-10 for newer Nova series devices.
+		Range:
+
+		- 0-3 (off, low, medium, high) for most devices.
+		- 0-10 for newer Nova series devices.
+
 		Access: Write
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/mic_volume
@@ -80,6 +87,7 @@ Description:
 		This is distinct from the OS input volume.
 
 		Range: 0-128 (mapped internally to device-specific values).
+
 		Access: Write
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/volume_limiter
@@ -91,8 +99,10 @@ Description:
 		When enabled, the maximum output volume is capped.
 
 		Values:
-		0 = Disabled
-		1 = Enabled
+
+		- 0 = Disabled
+		- 1 = Enabled
+
 		Access: Write
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/bluetooth_on_power
@@ -104,8 +114,10 @@ Description:
 		when the headset is powered on.
 
 		Values:
-		0 = Bluetooth must be turned on manually
-		1 = Bluetooth turns on automatically with headset
+
+		- 0 = Bluetooth must be turned on manually
+		- 1 = Bluetooth turns on automatically with headset
+
 		Access: Write
 
 What:		/sys/class/hid/drivers/steelseries/<dev>/bluetooth_call_vol
@@ -117,7 +129,9 @@ Description:
 		a Bluetooth call is active.
 
 		Values:
-		0 = No attenuation (mix both equally)
-		1 = Attenuate Game audio by -12dB
-		2 = Mute Game audio completely
+
+		- 0 = No attenuation (mix both equally)
+		- 1 = Attenuate Game audio by -12dB
+		- 2 = Mute Game audio completely
+
 		Access: Write

Thanks.

-- 
An old man doll... just what I always wanted! - Clara

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  parent reply	other threads:[~2025-12-29 10:04 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-28 12:20 [PATCH 0/4] HID: steelseries: Add support for Arctis headset lineup Sriman Achanta
2025-12-28 12:20 ` [PATCH 1/4] HID: hid-ids: Add SteelSeries Arctis headset device IDs Sriman Achanta
2025-12-28 12:20 ` [PATCH 2/4] HID: quirks: Add INPUT_CONFIGURED quirk for SteelSeries Arctis headsets Sriman Achanta
2025-12-28 12:20 ` [PATCH 3/4] Documentation: ABI: Document SteelSeries headset sysfs attributes Sriman Achanta
2025-12-29  1:42   ` kernel test robot
2025-12-29 10:04   ` Bagas Sanjaya [this message]
2025-12-28 12:20 ` [PATCH 4/4] HID: steelseries: Add support for Arctis headset lineup Sriman Achanta

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aVJSNAB8AWpPAQFM@archie.me \
    --to=bagasdotme@gmail.com \
    --cc=bentiss@kernel.org \
    --cc=jikos@kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=srimanachanta@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).