diff mbox series

soundwire: stream: add missing const to Documentation

Message ID 20240117160639.1327266-1-krzysztof.kozlowski@linaro.org
State Accepted
Commit 0707496ff4e416ea08c90053fd5fde5811b11b22
Headers show
Series soundwire: stream: add missing const to Documentation | expand

Commit Message

Krzysztof Kozlowski Jan. 17, 2024, 4:06 p.m. UTC
Commit 21f4c443731f ("soundwire: stream: constify sdw_port_config when
adding devices") added const to sdw_port_config argument, but forgot
documentation.

Fixes: 21f4c443731f ("soundwire: stream: constify sdw_port_config when adding devices")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/driver-api/soundwire/stream.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Vinod Koul Jan. 22, 2024, 8:27 a.m. UTC | #1
On Wed, 17 Jan 2024 17:06:39 +0100, Krzysztof Kozlowski wrote:
> Commit 21f4c443731f ("soundwire: stream: constify sdw_port_config when
> adding devices") added const to sdw_port_config argument, but forgot
> documentation.
> 
> 

Applied, thanks!

[1/1] soundwire: stream: add missing const to Documentation
      commit: 0707496ff4e416ea08c90053fd5fde5811b11b22

Best regards,
diff mbox series

Patch

diff --git a/Documentation/driver-api/soundwire/stream.rst b/Documentation/driver-api/soundwire/stream.rst
index b432a2de45d3..2a794484f62c 100644
--- a/Documentation/driver-api/soundwire/stream.rst
+++ b/Documentation/driver-api/soundwire/stream.rst
@@ -324,12 +324,12 @@  framework, this stream state is linked to .hw_params() operation.
 
   int sdw_stream_add_master(struct sdw_bus * bus,
 		struct sdw_stream_config * stream_config,
-		struct sdw_ports_config * ports_config,
+		const struct sdw_ports_config * ports_config,
 		struct sdw_stream_runtime * stream);
 
   int sdw_stream_add_slave(struct sdw_slave * slave,
 		struct sdw_stream_config * stream_config,
-		struct sdw_ports_config * ports_config,
+		const struct sdw_ports_config * ports_config,
 		struct sdw_stream_runtime * stream);