Commit 502c00d9 authored by Randy Dunlap's avatar Randy Dunlap Committed by Vinod Koul

Documentation: soundwire: fix stream.rst markup warnings

Fix kernel-doc markup warnings in soundwire/stream.rst:

rc4/Documentation/driver-api/soundwire/stream.rst:177: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:203: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:248: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:277: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:304: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:328: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:352: WARNING: Explicit markup ends without a blank line; unexpected unindent.
rc4/Documentation/driver-api/soundwire/stream.rst:364: WARNING: Explicit markup ends without a blank line; unexpected unindent.

Fixes: 89634f99 ("Documentation: soundwire: Add more documentation")
Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Reviewed-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
Tested-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent c272a766
...@@ -202,6 +202,7 @@ per stream. From ASoC DPCM framework, this stream state maybe linked to ...@@ -202,6 +202,7 @@ per stream. From ASoC DPCM framework, this stream state maybe linked to
.startup() operation. .startup() operation.
.. code-block:: c .. code-block:: c
int sdw_alloc_stream(char * stream_name); int sdw_alloc_stream(char * stream_name);
...@@ -228,6 +229,7 @@ only be invoked once by respective Master(s) and Slave(s). From ASoC DPCM ...@@ -228,6 +229,7 @@ only be invoked once by respective Master(s) and Slave(s). From ASoC DPCM
framework, this stream state is linked to .hw_params() operation. framework, this stream state is linked to .hw_params() operation.
.. code-block:: c .. code-block:: c
int sdw_stream_add_master(struct sdw_bus * bus, int sdw_stream_add_master(struct sdw_bus * bus,
struct sdw_stream_config * stream_config, struct sdw_stream_config * stream_config,
struct sdw_ports_config * ports_config, struct sdw_ports_config * ports_config,
...@@ -273,6 +275,7 @@ stream. From ASoC DPCM framework, this stream state is linked to ...@@ -273,6 +275,7 @@ stream. From ASoC DPCM framework, this stream state is linked to
.prepare() operation. .prepare() operation.
.. code-block:: c .. code-block:: c
int sdw_prepare_stream(struct sdw_stream_runtime * stream); int sdw_prepare_stream(struct sdw_stream_runtime * stream);
...@@ -302,6 +305,7 @@ stream. From ASoC DPCM framework, this stream state is linked to ...@@ -302,6 +305,7 @@ stream. From ASoC DPCM framework, this stream state is linked to
.trigger() start operation. .trigger() start operation.
.. code-block:: c .. code-block:: c
int sdw_enable_stream(struct sdw_stream_runtime * stream); int sdw_enable_stream(struct sdw_stream_runtime * stream);
SDW_STREAM_DISABLED SDW_STREAM_DISABLED
...@@ -329,6 +333,7 @@ per stream. From ASoC DPCM framework, this stream state is linked to ...@@ -329,6 +333,7 @@ per stream. From ASoC DPCM framework, this stream state is linked to
.trigger() stop operation. .trigger() stop operation.
.. code-block:: c .. code-block:: c
int sdw_disable_stream(struct sdw_stream_runtime * stream); int sdw_disable_stream(struct sdw_stream_runtime * stream);
...@@ -353,6 +358,7 @@ per stream. From ASoC DPCM framework, this stream state is linked to ...@@ -353,6 +358,7 @@ per stream. From ASoC DPCM framework, this stream state is linked to
.trigger() stop operation. .trigger() stop operation.
.. code-block:: c .. code-block:: c
int sdw_deprepare_stream(struct sdw_stream_runtime * stream); int sdw_deprepare_stream(struct sdw_stream_runtime * stream);
...@@ -377,6 +383,7 @@ all the Master(s) and Slave(s) associated with stream. From ASoC DPCM ...@@ -377,6 +383,7 @@ all the Master(s) and Slave(s) associated with stream. From ASoC DPCM
framework, this stream state is linked to .hw_free() operation. framework, this stream state is linked to .hw_free() operation.
.. code-block:: c .. code-block:: c
int sdw_stream_remove_master(struct sdw_bus * bus, int sdw_stream_remove_master(struct sdw_bus * bus,
struct sdw_stream_runtime * stream); struct sdw_stream_runtime * stream);
int sdw_stream_remove_slave(struct sdw_slave * slave, int sdw_stream_remove_slave(struct sdw_slave * slave,
...@@ -389,6 +396,7 @@ stream assigned as part of ALLOCATED state. ...@@ -389,6 +396,7 @@ stream assigned as part of ALLOCATED state.
In .shutdown() the data structure maintaining stream state are freed up. In .shutdown() the data structure maintaining stream state are freed up.
.. code-block:: c .. code-block:: c
void sdw_release_stream(struct sdw_stream_runtime * stream); void sdw_release_stream(struct sdw_stream_runtime * stream);
Not Supported Not Supported
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment