From: Luca Ceresoli Date: Thu, 5 Jul 2018 14:41:11 +0000 (-0400) Subject: media: smiapp: fix debug message X-Git-Tag: v5.15~8227^2~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18d6a9b831985c7c646abd751509f52079420104;p=platform%2Fkernel%2Flinux-starfive.git media: smiapp: fix debug message ask_h gets printed here instead of ask_w. Signed-off-by: Luca Ceresoli Signed-off-by: Sakari Ailus Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/smiapp/smiapp-core.c b/drivers/media/i2c/smiapp/smiapp-core.c index f2daad4..1236683 100644 --- a/drivers/media/i2c/smiapp/smiapp-core.c +++ b/drivers/media/i2c/smiapp/smiapp-core.c @@ -1892,7 +1892,7 @@ static int scaling_goodness(struct v4l2_subdev *subdev, int w, int ask_w, val -= SCALING_GOODNESS_EXTREME; dev_dbg(&client->dev, "w %d ask_w %d h %d ask_h %d goodness %d\n", - w, ask_h, h, ask_h, val); + w, ask_w, h, ask_h, val); return val; }