summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/driver_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/driver_common.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/driver_common.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/driver_common.c b/drivers/gpu/nvgpu/common/linux/driver_common.c
index 695bb307..62596d49 100644
--- a/drivers/gpu/nvgpu/common/linux/driver_common.c
+++ b/drivers/gpu/nvgpu/common/linux/driver_common.c
@@ -221,6 +221,11 @@ int nvgpu_probe(struct gk20a *g,
221 nvgpu_init_pm_vars(g); 221 nvgpu_init_pm_vars(g);
222 nvgpu_init_vbios_vars(g); 222 nvgpu_init_vbios_vars(g);
223 nvgpu_init_ltc_vars(g); 223 nvgpu_init_ltc_vars(g);
224 err = nvgpu_init_soc_vars(g);
225 if (err) {
226 nvgpu_err(g, "init soc vars failed");
227 return err;
228 }
224 229
225 /* Initialize the platform interface. */ 230 /* Initialize the platform interface. */
226 err = platform->probe(dev); 231 err = platform->probe(dev);