mirror of https://gitee.com/openkylin/linux.git
drm/msm/hdmi: Use bitwise operators when building register values
Commitc0c0d9eeeb
("drm/msm: hdmi audio support") uses logical OR operators to build up a value to be written in the REG_HDMI_AUDIO_INFO0 and REG_HDMI_AUDIO_INFO1 registers when it should have used bitwise operators. Signed-off-by: Liviu Dudau <liviu.dudau@arm.com> Fixes:c0c0d9eeeb
("drm/msm: hdmi audio support") Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
52260ae4c4
commit
ffe8f53f9c
|
@ -175,10 +175,10 @@ int msm_hdmi_audio_update(struct hdmi *hdmi)
|
|||
/* configure infoframe: */
|
||||
hdmi_audio_infoframe_pack(info, buf, sizeof(buf));
|
||||
hdmi_write(hdmi, REG_HDMI_AUDIO_INFO0,
|
||||
(buf[3] << 0) || (buf[4] << 8) ||
|
||||
(buf[5] << 16) || (buf[6] << 24));
|
||||
(buf[3] << 0) | (buf[4] << 8) |
|
||||
(buf[5] << 16) | (buf[6] << 24));
|
||||
hdmi_write(hdmi, REG_HDMI_AUDIO_INFO1,
|
||||
(buf[7] << 0) || (buf[8] << 8));
|
||||
(buf[7] << 0) | (buf[8] << 8));
|
||||
|
||||
hdmi_write(hdmi, REG_HDMI_GC, 0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue