diff options
author | Eric Anholt <eric@anholt.net> | 2015-12-28 23:14:57 +0100 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2016-02-16 20:24:08 +0100 |
commit | 17eac75111ebda33e13d8d8d98aaedfc1a9c2abf (patch) | |
tree | b56d8c22a634174737ad001dd7f9ce846803f42f /drivers/gpu/drm/vc4/vc4_plane.c | |
parent | drm/vc4: Improve comments on vc4_plane_state members. (diff) | |
download | linux-17eac75111ebda33e13d8d8d98aaedfc1a9c2abf.tar.xz linux-17eac75111ebda33e13d8d8d98aaedfc1a9c2abf.zip |
drm/vc4: Add missing __iomem annotation to hw_dlist.
This is the pointer to the HVS device's memory where we stored the
contents of *dlist.
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/vc4/vc4_plane.c')
-rw-r--r-- | drivers/gpu/drm/vc4/vc4_plane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_plane.c b/drivers/gpu/drm/vc4/vc4_plane.c index 45e353d65c3d..ed07ee57e1bf 100644 --- a/drivers/gpu/drm/vc4/vc4_plane.c +++ b/drivers/gpu/drm/vc4/vc4_plane.c @@ -39,7 +39,7 @@ struct vc4_plane_state { /* Offset where the plane's dlist was last stored in the * hardware at vc4_crtc_atomic_flush() time. */ - u32 *hw_dlist; + u32 __iomem *hw_dlist; }; static inline struct vc4_plane_state * |