From 919d6c13cbc1235d779c40a8c1c7f9a3e75a4b19 Mon Sep 17 00:00:00 2001 From: Philip Elcan Date: Fri, 17 Jan 2020 11:03:40 -0500 Subject: [PATCH] gpu: nvgpu: ltc: hide HAL from doxygen The HAL gops_ltc.init_fs_state is private to the common.ltc unit, thus the gv11b implementation gv11b_ltc_init_fs_state is private. So, hide it from doxygen to cleanup SWVR traceability. JIRA NVGPU-4818 Change-Id: I141d89e6e4859fb9dd554a2943a39939e6461084 Signed-off-by: Philip Elcan Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2280642 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Vinod Gopalakrishnakurup Reviewed-by: mobile promotions Tested-by: mobile promotions GVS: Gerrit_Virtual_Submit --- drivers/gpu/nvgpu/hal/ltc/ltc_gv11b.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/nvgpu/hal/ltc/ltc_gv11b.h b/drivers/gpu/nvgpu/hal/ltc/ltc_gv11b.h index 460e7ebe1..6ff159e68 100644 --- a/drivers/gpu/nvgpu/hal/ltc/ltc_gv11b.h +++ b/drivers/gpu/nvgpu/hal/ltc/ltc_gv11b.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2016-2020, NVIDIA CORPORATION. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -30,7 +30,6 @@ struct gk20a; struct nvgpu_hw_err_inject_info; struct nvgpu_hw_err_inject_info_desc; -void gv11b_ltc_init_fs_state(struct gk20a *g); int gv11b_lts_ecc_init(struct gk20a *g); #ifdef CONFIG_NVGPU_GRAPHICS @@ -44,4 +43,8 @@ void gv11b_ltc_inject_ecc_error(struct gk20a *g, struct nvgpu_hw_err_inject_info *err, u32 error_info); #endif +/** @cond DOXYGEN_SHOULD_SKIP_THIS */ +void gv11b_ltc_init_fs_state(struct gk20a *g); +/** @endcond DOXYGEN_SHOULD_SKIP_THIS */ + #endif