Skip to content

Commit 18d6a9b

Browse files
lucaceresolimchehab
authored andcommitted
media: smiapp: fix debug message
ask_h gets printed here instead of ask_w. Signed-off-by: Luca Ceresoli <[email protected]> Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 6949d86 commit 18d6a9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/media/i2c/smiapp/smiapp-core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1892,7 +1892,7 @@ static int scaling_goodness(struct v4l2_subdev *subdev, int w, int ask_w,
18921892
val -= SCALING_GOODNESS_EXTREME;
18931893

18941894
dev_dbg(&client->dev, "w %d ask_w %d h %d ask_h %d goodness %d\n",
1895-
w, ask_h, h, ask_h, val);
1895+
w, ask_w, h, ask_h, val);
18961896

18971897
return val;
18981898
}

0 commit comments

Comments
 (0)