summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-03-24 13:55:46 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-03-28 15:05:03 -0400
commit3e39798997f0726472e18a17462216094c084074 (patch)
treecf68b3fff464c1217fa28ec27f6c612d5cfc66fb /drivers/gpu/nvgpu/common
parent580c8112f08281332cefea16243fcfbf27cd6bdd (diff)
gpu: nvgpu: Remove unnecessary use of dev_name()
Move the name field from struct gpu_ops up to struct gk20a. The field is not a function op, so it doesn't belong in gpu_ops. Replace all uses of dev_name() with use of g->name when possible. JIRA NVGPU-16 Change-Id: Ic6e99e39258cbf3bb7c806962cbbd7de5126688f Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1328534 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common')
-rw-r--r--drivers/gpu/nvgpu/common/nvgpu_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/common/nvgpu_common.c b/drivers/gpu/nvgpu/common/nvgpu_common.c
index 771d4121..843228e9 100644
--- a/drivers/gpu/nvgpu/common/nvgpu_common.c
+++ b/drivers/gpu/nvgpu/common/nvgpu_common.c
@@ -230,8 +230,8 @@ const struct firmware *nvgpu_request_firmware(struct gk20a *g,
230 if (!current->fs || !fw_name) 230 if (!current->fs || !fw_name)
231 return NULL; 231 return NULL;
232 232
233 BUG_ON(!g->ops.name); 233 BUG_ON(!g->name);
234 fw = do_request_firmware(dev, g->ops.name, fw_name, flags); 234 fw = do_request_firmware(dev, g->name, fw_name, flags);
235 235
236#ifdef CONFIG_TEGRA_GK20A 236#ifdef CONFIG_TEGRA_GK20A
237 /* TO BE REMOVED - Support loading from legacy SOC specific path. */ 237 /* TO BE REMOVED - Support loading from legacy SOC specific path. */