summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/vgpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/vgpu.h')
-rw-r--r--drivers/gpu/nvgpu/vgpu/vgpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/vgpu.h b/drivers/gpu/nvgpu/vgpu/vgpu.h
index 31ecb737..92b82ac4 100644
--- a/drivers/gpu/nvgpu/vgpu/vgpu.h
+++ b/drivers/gpu/nvgpu/vgpu/vgpu.h
@@ -41,7 +41,7 @@ struct vgpu_priv_data *vgpu_get_priv_data_from_dev(struct device *dev)
41 41
42static inline struct vgpu_priv_data *vgpu_get_priv_data(struct gk20a *g) 42static inline struct vgpu_priv_data *vgpu_get_priv_data(struct gk20a *g)
43{ 43{
44 return vgpu_get_priv_data_from_dev(g->dev); 44 return vgpu_get_priv_data_from_dev(dev_from_gk20a(g));
45} 45}
46 46
47static inline u64 vgpu_get_handle_from_dev(struct device *dev) 47static inline u64 vgpu_get_handle_from_dev(struct device *dev)
@@ -58,7 +58,7 @@ static inline u64 vgpu_get_handle_from_dev(struct device *dev)
58 58
59static inline u64 vgpu_get_handle(struct gk20a *g) 59static inline u64 vgpu_get_handle(struct gk20a *g)
60{ 60{
61 return vgpu_get_handle_from_dev(g->dev); 61 return vgpu_get_handle_from_dev(dev_from_gk20a(g));
62} 62}
63 63
64int vgpu_pm_prepare_poweroff(struct device *dev); 64int vgpu_pm_prepare_poweroff(struct device *dev);