summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h
diff options
context:
space:
mode:
authorsmadhavan <smadhavan@nvidia.com>2018-09-05 03:20:15 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-09-06 19:15:30 -0400
commitc4ac750e985dddebe25308c7f9bd0a27a98feaa8 (patch)
treeffe645a1becda6bca10f893f164209b192e80a9a /drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h
parent4451cf29d46cee3415e4dce42a8f67f3cc49070c (diff)
nvgpu: gk20a: MISRA Rule 21.2 header guard fixes
MISRA rule 21.2 doesn't allow the use of macro names which start with an underscore. These leading underscores are to be removed from the macro names. This patch will fix such violations caused by include guards by renaming them to follow the convention, 'NVGPU_PARENT-DIR_HEADER_H' JIRA NVGPU-1028 Change-Id: I478be317d067a75cdc8cb7fe9577a66d06318a11 Signed-off-by: smadhavan <smadhavan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1813068 GVS: Gerrit_Virtual_Submit Reviewed-by: Konsta Holtta <kholtta@nvidia.com> Reviewed-by: Adeel Raza <araza@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h b/drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h
index 8e723107..cbde2fe7 100644
--- a/drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/fecs_trace_gk20a.h
@@ -20,8 +20,8 @@
20 * DEALINGS IN THE SOFTWARE. 20 * DEALINGS IN THE SOFTWARE.
21 */ 21 */
22 22
23#ifndef __FECS_TRACE_GK20A_H 23#ifndef NVGPU_GK20A_FECS_TRACE_GK20A_H
24#define __FECS_TRACE_GK20A_H 24#define NVGPU_GK20A_FECS_TRACE_GK20A_H
25 25
26struct gk20a; 26struct gk20a;
27struct channel_gk20a; 27struct channel_gk20a;
@@ -41,4 +41,4 @@ int gk20a_fecs_trace_disable(struct gk20a *g);
41bool gk20a_fecs_trace_is_enabled(struct gk20a *g); 41bool gk20a_fecs_trace_is_enabled(struct gk20a *g);
42size_t gk20a_fecs_trace_buffer_size(struct gk20a *g); 42size_t gk20a_fecs_trace_buffer_size(struct gk20a *g);
43 43
44#endif /* __FECS_TRACE_GK20A_H */ 44#endif /* NVGPU_GK20A_FECS_TRACE_GK20A_H */