Commit 639544d7 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

V4L/DVB (13878): dvb_frontend: Print dump on get after filling the data

parent 64677573
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1199,8 +1199,6 @@ static int dtv_property_process_get(struct dvb_frontend *fe,
{
	int r = 0;

	dtv_property_dump(tvp);

	/* Allow the frontend to validate incoming properties */
	if (fe->ops.get_property)
		r = fe->ops.get_property(fe, tvp);
@@ -1323,6 +1321,8 @@ static int dtv_property_process_get(struct dvb_frontend *fe,
		r = -1;
	}

	dtv_property_dump(tvp);

	return r;
}