gpu: nvgpu: fix doxygen for fifo setup/cleanup sw

Fixed formatting issues for:
- nvgpu_fifo_setup_sw_common
- nvgpu_fifo_cleanup_sw

Jira NVGPU-4291

Change-Id: I4d828d231497b47621e057e11b3687fd40a9df6a
Signed-off-by: Thomas Fleury <tfleury@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2236763
Reviewed-by: Philip Elcan <pelcan@nvidia.com>
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Seema Khowala <seemaj@nvidia.com>
Reviewed-by: Deepak Nibade <dnibade@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Thomas Fleury
2019-11-11 13:09:19 -05:00
committed by Alex Waterman
parent 8d3427633f
commit 7c82359afb

View File

@@ -440,14 +440,15 @@ int nvgpu_fifo_setup_sw(struct gk20a *g);
*
* @param g [in] The GPU driver struct.
*
* Init mutexes needed by FIFO module. Refer #nvgpu_fifo struct.
* Do #nvgpu_channel_setup_sw.
* Do #nvgpu_tsg_setup_sw.
* Do pbdma.setup_sw.
* Do #nvgpu_engine_setup_sw.
* Do #nvgpu_runlist_setup_sw.
* Do userd.setup_sw.
* Init #nvgpu_fifo.remove_support function pointer.
* Initialize FIFO software context:
* - Init mutexes needed by FIFO module. Refer #nvgpu_fifo struct.
* - Do #nvgpu_channel_setup_sw.
* - Do #nvgpu_tsg_setup_sw.
* - Do pbdma.setup_sw.
* - Do #nvgpu_engine_setup_sw.
* - Do #nvgpu_runlist_setup_sw.
* - Do userd.setup_sw.
* - Init #nvgpu_fifo.remove_support function pointer.
*
* @return 0 in case of success, < 0 in case of failure.
* @note In case of failure, cleanup_sw for the blocks that are already
@@ -470,13 +471,14 @@ void nvgpu_fifo_cleanup_sw(struct gk20a *g);
*
* @param g [in] The GPU driver struct.
*
* Do userd.cleanup_sw.
* Do #nvgpu_channel_cleanup_sw.
* Do #nvgpu_tsg_cleanup_sw.
* Do #nvgpu_runlist_cleanup_sw.
* Do #nvgpu_engine_cleanup_sw.
* Do pbdma.setup_sw.
* Destroy mutexes used by FIFO module. Refer #nvgpu_fifo struct.
* Clean up FIFO software context and related resources:
* - Do userd.cleanup_sw.
* - Do #nvgpu_channel_cleanup_sw.
* - Do #nvgpu_tsg_cleanup_sw.
* - Do #nvgpu_runlist_cleanup_sw.
* - Do #nvgpu_engine_cleanup_sw.
* - Do pbdma.setup_sw.
* - Destroy mutexes used by FIFO module. Refer #nvgpu_fifo struct.
*/
void nvgpu_fifo_cleanup_sw_common(struct gk20a *g);