From dd739fcb039d51606e9a5454ec0aab17bcb01965 Mon Sep 17 00:00:00 2001 From: Terje Bergstrom Date: Wed, 18 Apr 2018 19:39:46 -0700 Subject: gpu: nvgpu: Remove gk20a_dbg* functions Switch all logging to nvgpu_log*(). gk20a_dbg* macros are intentionally left there because of use from other repositories. Because the new functions do not work without a pointer to struct gk20a, and piping it just for logging is excessive, some log messages are deleted. Change-Id: I00e22e75fe4596a330bb0282ab4774b3639ee31e Signed-off-by: Terje Bergstrom Reviewed-on: https://git-master.nvidia.com/r/1704148 Reviewed-by: mobile promotions Tested-by: mobile promotions --- drivers/gpu/nvgpu/gp106/xve_gp106.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'drivers/gpu/nvgpu/gp106/xve_gp106.h') diff --git a/drivers/gpu/nvgpu/gp106/xve_gp106.h b/drivers/gpu/nvgpu/gp106/xve_gp106.h index d48b0991..e0be35ac 100644 --- a/drivers/gpu/nvgpu/gp106/xve_gp106.h +++ b/drivers/gpu/nvgpu/gp106/xve_gp106.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2016-2018, 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"), @@ -49,11 +49,11 @@ enum xv_speed_change_steps { CLEANUP }; -#define xv_dbg(fmt, args...) \ - gk20a_dbg(gpu_dbg_xv, fmt, ##args) +#define xv_dbg(g, fmt, args...) \ + nvgpu_log(g, gpu_dbg_xv, fmt, ##args) -#define xv_sc_dbg(step, fmt, args...) \ - xv_dbg("[%d] %15s | " fmt, step, __stringify(step), ##args) +#define xv_sc_dbg(g, step, fmt, args...) \ + xv_dbg(g, "[%d] %15s | " fmt, step, __stringify(step), ##args) void xve_xve_writel_gp106(struct gk20a *g, u32 reg, u32 val); u32 xve_xve_readl_gp106(struct gk20a *g, u32 reg); -- cgit v1.2.2