Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 458540c6 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Tomi Valkeinen
Browse files

drm/omap: omap_display_timings: rename vbp to vback_porch



In preparation to move the stack to use the generic videmode struct for
display timing information rename the vbp member to vback_porch.

Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 0996c68e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ static const struct omap_video_timings tvc_pal_timings = {
	.hback_porch	= 68,
	.vsync_len	= 5,
	.vfront_porch	= 5,
	.vbp		= 41,
	.vback_porch	= 41,

	.interlace	= true,
};
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ static const struct omap_video_timings dvic_default_timings = {

	.vfront_porch	= 3,
	.vsync_len	= 4,
	.vbp		= 7,
	.vback_porch	= 7,

	.vsync_level	= OMAPDSS_SIG_ACTIVE_HIGH,
	.hsync_level	= OMAPDSS_SIG_ACTIVE_HIGH,
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ static const struct omap_video_timings hdmic_default_timings = {
	.hback_porch	= 48,
	.vsync_len	= 2,
	.vfront_porch	= 11,
	.vbp		= 31,
	.vback_porch	= 31,

	.vsync_level	= OMAPDSS_SIG_ACTIVE_LOW,
	.hsync_level	= OMAPDSS_SIG_ACTIVE_LOW,
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ static struct omap_video_timings lb035q02_timings = {

	.vsync_len	= 2,
	.vfront_porch	= 4,
	.vbp		= 18,
	.vback_porch	= 18,

	.vsync_level	= OMAPDSS_SIG_ACTIVE_LOW,
	.hsync_level	= OMAPDSS_SIG_ACTIVE_LOW,
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ static const struct omap_video_timings nec_8048_panel_timings = {
	.hback_porch	= 4,
	.vfront_porch	= 3,
	.vsync_len	= 1,
	.vbp		= 4,
	.vback_porch	= 4,

	.vsync_level	= OMAPDSS_SIG_ACTIVE_LOW,
	.hsync_level	= OMAPDSS_SIG_ACTIVE_LOW,
Loading