summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a_allocator.h
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-08-10 17:14:11 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2016-08-30 13:04:35 -0400
commitcfa0f2a6ea9e6c99cd02fffa8dfa323744a4965f (patch)
treeca25b0ae13aacab3e52c2efdffc613773e3482be /drivers/gpu/nvgpu/gk20a/gk20a_allocator.h
parente8a159defd760f20be04105f7085c4f7d9c4ebd4 (diff)
gpu: nvgpu: Turn the debug macro back to pr_info
Instead of having the debug prints from the allocators be warnings they should be just regular prints. Bug 1799159 Change-Id: Ic6e3c38fa286c4acd6fcba51dc59158dc2d655fc Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1201372 (cherry picked from commit 107caf4ce68a7c76023ee1e66a98c5570f401059) Reviewed-on: http://git-master/r/1208478 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gk20a_allocator.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a_allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a_allocator.h b/drivers/gpu/nvgpu/gk20a/gk20a_allocator.h
index d4ff79b1..fbfda881 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a_allocator.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a_allocator.h
@@ -233,7 +233,7 @@ void gk20a_alloc_debugfs_init(struct platform_device *pdev);
233 } while (0) 233 } while (0)
234 234
235#define __alloc_dbg(a, fmt, arg...) \ 235#define __alloc_dbg(a, fmt, arg...) \
236 pr_warn("%-25s %25s() " fmt, (a)->name, __func__, ##arg) 236 pr_info("%-25s %25s() " fmt, (a)->name, __func__, ##arg)
237 237
238#if defined(ALLOCATOR_DEBUG) 238#if defined(ALLOCATOR_DEBUG)
239/* 239/*