summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@quicinc.com>2017-05-04 08:45:23 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2017-05-04 08:45:23 -0700
commita18fb0347b76f1bcd9b950ff06c615ec6c38e7c4 (patch)
tree957324be216142c3844fdf648b30841f4cbed5c9 /drivers
parent66e4265f1da11678a1aafb2479d32298f103863d (diff)
parentae154077211177c3914d72733d0d0f1223928942 (diff)
Merge "drm/msm: Fix the SNAPSHOT_HEADER macro"
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/msm/msm_snapshot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/msm/msm_snapshot.h b/drivers/gpu/drm/msm/msm_snapshot.h
index 247e1358c885..fd560b2129f1 100644
--- a/drivers/gpu/drm/msm/msm_snapshot.h
+++ b/drivers/gpu/drm/msm/msm_snapshot.h
@@ -71,8 +71,8 @@ static inline bool _snapshot_header(struct msm_snapshot *snapshot,
*/
#define SNAPSHOT_HEADER(_snapshot, _header, _id, _dwords) \
_snapshot_header((_snapshot), \
- (struct msm_snapshot_section_header *) &(header), \
- sizeof(header), (_dwords) << 2, (_id))
+ (struct msm_snapshot_section_header *) &(_header), \
+ sizeof(_header), (_dwords) << 2, (_id))
struct msm_gpu;