Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1327153 > unrolled thread
| Started by | Eric Anholt <eric@anholt.net> |
|---|---|
| First post | 2016-02-04 21:30 +0100 |
| Last post | 2016-02-04 21:30 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 02/10] drm/vc4: Add missing __iomem annotation to hw_dlist. Eric Anholt <eric@anholt.net> - 2016-02-04 21:30 +0100
| From | Eric Anholt <eric@anholt.net> |
|---|---|
| Date | 2016-02-04 21:30 +0100 |
| Subject | [PATCH 02/10] drm/vc4: Add missing __iomem annotation to hw_dlist. |
| Message-ID | <qYyHo-6SV-1@gated-at.bofh.it> |
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>
---
drivers/gpu/drm/vc4/vc4_plane.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/vc4/vc4_plane.c b/drivers/gpu/drm/vc4/vc4_plane.c
index 45e353d..ed07ee5 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 *
--
2.7.0
Back to top | Article view | linux.kernel
csiph-web