diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2014-09-12 06:02:02 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:52:23 -0700 |
commit | 4f31b027c3f2671d3d1da47666a23eca930baafb (patch) | |
tree | 3eea629e6abd6538c1d90861efffef62c1b39d50 /drivers | |
parent | 66c644d7226b430e499757177c27872ba3479b23 (diff) | |
download | linux-stable-4f31b027c3f2671d3d1da47666a23eca930baafb.tar.gz linux-stable-4f31b027c3f2671d3d1da47666a23eca930baafb.tar.bz2 linux-stable-4f31b027c3f2671d3d1da47666a23eca930baafb.zip |
media: adv7604: fix inverted condition
commit 77639ff2b3404a913b8037d230a384798b854bae upstream.
The log_status function should show HDMI information, but the test checking for
an HDMI input was inverted. Fix this.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/i2c/adv7604.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/adv7604.c b/drivers/media/i2c/adv7604.c index 71c8570bd9ea..112394d138c9 100644 --- a/drivers/media/i2c/adv7604.c +++ b/drivers/media/i2c/adv7604.c @@ -1984,7 +1984,7 @@ static int adv7604_log_status(struct v4l2_subdev *sd) v4l2_info(sd, "HDCP keys read: %s%s\n", (hdmi_read(sd, 0x04) & 0x20) ? "yes" : "no", (hdmi_read(sd, 0x04) & 0x10) ? "ERROR" : ""); - if (!is_hdmi(sd)) { + if (is_hdmi(sd)) { bool audio_pll_locked = hdmi_read(sd, 0x04) & 0x01; bool audio_sample_packet_detect = hdmi_read(sd, 0x18) & 0x01; bool audio_mute = io_read(sd, 0x65) & 0x40; |