From 44d3ef0ca2f7f5c36e166af7fef139e57f5b6b0a Mon Sep 17 00:00:00 2001 From: Nicolas Benech Date: Wed, 10 Oct 2018 11:37:52 -0400 Subject: [PATCH] gpu: nvgpu: posix: Implement nvgpu_writel_relaxed The implementation for nvgpu_writel_relaxed was missing in the POSIX layer. JIRA NVGPU-1040 Change-Id: If178792af87d72fa811746f9e77d917e0df1c1fa Signed-off-by: Nicolas Benech Reviewed-on: https://git-master.nvidia.com/r/1923707 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Konsta Holtta Reviewed-by: Philip Elcan GVS: Gerrit_Virtual_Submit Reviewed-by: Alex Waterman Reviewed-by: mobile promotions Tested-by: mobile promotions --- drivers/gpu/nvgpu/os/posix/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/nvgpu/os/posix/io.c b/drivers/gpu/nvgpu/os/posix/io.c index 0f611f029..9ae5ec8d0 100644 --- a/drivers/gpu/nvgpu/os/posix/io.c +++ b/drivers/gpu/nvgpu/os/posix/io.c @@ -67,7 +67,7 @@ void nvgpu_writel(struct gk20a *g, u32 r, u32 v) void nvgpu_writel_relaxed(struct gk20a *g, u32 r, u32 v) { - BUG(); + nvgpu_writel(g, r, v); } u32 nvgpu_readl(struct gk20a *g, u32 r)