mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 08:33:17 +02:00
drm/i915/hdmi: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240903025558.493977-1-nichen@iscas.ac.cn Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
963ed4efe0
commit
7cd1049a33
|
|
@ -1310,8 +1310,8 @@ static int intel_hdmi_hdcp_write(struct intel_digital_port *dig_port,
|
|||
memcpy(&write_buf[1], buffer, size);
|
||||
|
||||
msg.addr = DRM_HDCP_DDC_ADDR;
|
||||
msg.flags = 0,
|
||||
msg.len = size + 1,
|
||||
msg.flags = 0;
|
||||
msg.len = size + 1;
|
||||
msg.buf = write_buf;
|
||||
|
||||
ret = i2c_transfer(ddc, &msg, 1);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user