[Intel-gfx] [PATCH 2/9] drm/edid: Swap some operands in for_each_displayid_db()
Ville Syrjala
ville.syrjala at linux.intel.com
Fri Mar 13 16:20:47 UTC 2020
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
A+B on the previous line, B+A on the next line. Brain hurts.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
include/drm/drm_displayid.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_displayid.h b/include/drm/drm_displayid.h
index 9d3b745c3107..27bdd273fc4e 100644
--- a/include/drm/drm_displayid.h
+++ b/include/drm/drm_displayid.h
@@ -97,7 +97,7 @@ struct displayid_detailed_timing_block {
(idx) + sizeof(struct displayid_block) <= (length) && \
(idx) + sizeof(struct displayid_block) + (block)->num_bytes <= (length) && \
(block)->num_bytes > 0; \
- (idx) += (block)->num_bytes + sizeof(struct displayid_block), \
+ (idx) += sizeof(struct displayid_block) + (block)->num_bytes, \
(block) = (struct displayid_block *)&(displayid)[idx])
#endif
--
2.24.1
More information about the Intel-gfx
mailing list