Skip to content
Snippets Groups Projects
Commit 991cd1d9 authored by Dmitry Osipenko's avatar Dmitry Osipenko
Browse files

media: platform: synopsys: hdmirx: Optimize struct snps_hdmirx_dev


Move cached EDID that takes 512 bytes to the bottom of struct
snps_hdmirx_dev to improve CPU's cache locality of the struct.

Signed-off-by: default avatarDmitry Osipenko <dmitry.osipenko@collabora.com>
parent c57e2b12
No related branches found
No related tags found
No related merge requests found
......@@ -154,8 +154,8 @@ struct snps_hdmirx_dev {
u32 edid_blocks_written;
u32 cur_fmt_fourcc;
u32 color_depth;
u8 edid[EDID_NUM_BLOCKS_MAX * EDID_BLOCK_SIZE];
spinlock_t rst_lock; /* to lock register access */
u8 edid[EDID_NUM_BLOCKS_MAX * EDID_BLOCK_SIZE];
};
static const struct v4l2_dv_timings cea640x480 = V4L2_DV_BT_CEA_640X480P59_94;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment