Message ID | m3a6m9cq52.fsf@t19.piap.pl (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix cosmetic error in TDA1997x driver | expand |
On Mon, Jul 26, 2021 at 3:42 AM Krzysztof Hałasa <khalasa@piap.pl> wrote: > > The colon isn't followed by anything here. > > Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl> > > diff --git a/drivers/media/i2c/tda1997x.c b/drivers/media/i2c/tda1997x.c > index 91e6db847bb5..e55e4afaae8a 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); Acked-By: Tim Harvey <tharvey@gateworks.com>
diff --git a/drivers/media/i2c/tda1997x.c b/drivers/media/i2c/tda1997x.c index 91e6db847bb5..e55e4afaae8a 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);
The colon isn't followed by anything here. Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl>