mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
drm/edid: Swap some operands in for_each_displayid_db()
A+B on the previous line, B+A on the next line. Brain hurts. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200313162054.16009-3-ville.syrjala@linux.intel.com Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
267ea759b2
commit
bf5e4a863a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user