summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.c b/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.c
index 515ba630..b50698e0 100644
--- a/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.c
@@ -59,7 +59,7 @@ static int gr_gp10b_get_netlist_name(int index, char *name)
59 59
60static bool gr_gp10b_is_firmware_defined(void) 60static bool gr_gp10b_is_firmware_defined(void)
61{ 61{
62#ifdef GM20B_NETLIST_IMAGE_FW_NAME 62#ifdef GP10B_NETLIST_IMAGE_FW_NAME
63 return true; 63 return true;
64#else 64#else
65 return false; 65 return false;
diff --git a/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.h b/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.h
index b1184f9d..b5c76d24 100644
--- a/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.h
+++ b/drivers/gpu/nvgpu/gp10b/gr_ctx_gp10b.h
@@ -21,7 +21,7 @@
21#include "gk20a/gr_ctx_gk20a.h" 21#include "gk20a/gr_ctx_gk20a.h"
22 22
23/* production netlist, one and only one from below */ 23/* production netlist, one and only one from below */
24/*#undef GM20B_NETLIST_IMAGE_FW_NAME*/ 24#define GP10B_NETLIST_IMAGE_FW_NAME GK20A_NETLIST_IMAGE_A
25 25
26void gp10b_init_gr_ctx(struct gpu_ops *gops); 26void gp10b_init_gr_ctx(struct gpu_ops *gops);
27 27