diff options
author | Krzysztof Hałasa <khalasa@piap.pl> | 2021-07-26 13:42:49 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-08-04 15:43:52 +0300 |
commit | 95d453661172db82ddf2a1864b0ab41ff7725e03 (patch) | |
tree | 40fe50f140a5c8a928645934677dcc9dad24556e /drivers | |
parent | 4108b3e6db31acc4c68133290bbcc87d4db905c9 (diff) | |
download | linux-95d453661172db82ddf2a1864b0ab41ff7725e03.tar.xz |
media: Fix cosmetic error in TDA1997x driver
The colon isn't followed by anything here.
Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/i2c/tda1997x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/tda1997x.c b/drivers/media/i2c/tda1997x.c index 3a191e257fad..71194746c874 100644 --- a/drivers/media/i2c/tda1997x.c +++ b/drivers/media/i2c/tda1997x.c @@ -563,7 +563,7 @@ static void tda1997x_delayed_work_enable_hpd(struct work_struct *work) delayed_work_enable_hpd); struct v4l2_subdev *sd = &state->sd; - v4l2_dbg(2, debug, sd, "%s:\n", __func__); + v4l2_dbg(2, debug, sd, "%s\n", __func__); /* Set HPD high */ tda1997x_manual_hpd(sd, HPD_HIGH_OTHER); |