aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/core/include/subdev/clock.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2014-12-03 17:07:22 +1000
committerBen Skeggs <bskeggs@redhat.com>2015-01-22 12:14:42 +1000
commit2f4a58e852d103488fc435f0c1ecbb9a86761579 (patch)
treec708086427dc2a003a3f9349f2d2ca65ed6c5e7e /drivers/gpu/drm/nouveau/core/include/subdev/clock.h
parentdrm/nouveau/fb: remove some (now) unnecessary hacks (diff)
downloadlinux-dev-2f4a58e852d103488fc435f0c1ecbb9a86761579.tar.xz
linux-dev-2f4a58e852d103488fc435f0c1ecbb9a86761579.zip
drm/nouveau/subdev: always upcast through nouveau_subdev()/nouveau_engine()
Has additional safeties for one. For two, needed for an upcoming commit that removes abuse of nouveau_object.engine. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/core/include/subdev/clock.h')
-rw-r--r--drivers/gpu/drm/nouveau/core/include/subdev/clock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/core/include/subdev/clock.h b/drivers/gpu/drm/nouveau/core/include/subdev/clock.h
index 36ed035d4d42..0fd5e4a3a7a2 100644
--- a/drivers/gpu/drm/nouveau/core/include/subdev/clock.h
+++ b/drivers/gpu/drm/nouveau/core/include/subdev/clock.h
@@ -104,7 +104,7 @@ struct nouveau_clock {
static inline struct nouveau_clock *
nouveau_clock(void *obj)
{
- return (void *)nv_device(obj)->subdev[NVDEV_SUBDEV_CLOCK];
+ return (void *)nouveau_subdev(obj, NVDEV_SUBDEV_CLOCK);
}
struct nouveau_clocks {