public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PACTH i-g-t] lib/igt_kms: Fix different order of properties and their name strings
@ 2016-06-29 11:22 robert.foss
  2016-07-11 19:54 ` Robert Foss
  0 siblings, 1 reply; 3+ messages in thread
From: robert.foss @ 2016-06-29 11:22 UTC (permalink / raw)
  To: daniel.vetter, daniel.stone, marius.c.vlad, tomeu.vizoso, chris; +Cc: intel-gfx

From: Robert Foss <robert.foss@collabora.com>

igt_crtc_prop_names and igt_atomic_crtc_properties have different orders of
properties, which is fixed in this patch.

Signed-off-by: Robert Foss <robert.foss@collabora.com>
---
 lib/igt_kms.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index af72b90..dd4eb84 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -164,8 +164,8 @@ static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = {
 
 static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
 	"background_color",
-	"DEGAMMA_LUT",
 	"CTM",
+	"DEGAMMA_LUT",
 	"GAMMA_LUT",
 };
 
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PACTH i-g-t] lib/igt_kms: Fix different order of properties and their name strings
  2016-06-29 11:22 [PACTH i-g-t] lib/igt_kms: Fix different order of properties and their name strings robert.foss
@ 2016-07-11 19:54 ` Robert Foss
  2016-07-14 11:15   ` Marius Vlad
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Foss @ 2016-07-11 19:54 UTC (permalink / raw)
  To: daniel.vetter, daniel.stone, marius.c.vlad, tomeu.vizoso, chris; +Cc: intel-gfx

This is a reminder of this series.

On 2016-06-29 07:22 AM, robert.foss@collabora.com wrote:
> From: Robert Foss <robert.foss@collabora.com>
>
> igt_crtc_prop_names and igt_atomic_crtc_properties have different orders of
> properties, which is fixed in this patch.
>
> Signed-off-by: Robert Foss <robert.foss@collabora.com>
> ---
>   lib/igt_kms.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index af72b90..dd4eb84 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -164,8 +164,8 @@ static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = {
>
>   static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
>   	"background_color",
> -	"DEGAMMA_LUT",
>   	"CTM",
> +	"DEGAMMA_LUT",
>   	"GAMMA_LUT",
>   };
>
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PACTH i-g-t] lib/igt_kms: Fix different order of properties and their name strings
  2016-07-11 19:54 ` Robert Foss
@ 2016-07-14 11:15   ` Marius Vlad
  0 siblings, 0 replies; 3+ messages in thread
From: Marius Vlad @ 2016-07-14 11:15 UTC (permalink / raw)
  To: Robert Foss; +Cc: daniel.vetter, intel-gfx, tomeu.vizoso, daniel.stone


[-- Attachment #1.1: Type: text/plain, Size: 933 bytes --]

Applied. Thanks!
On Mon, Jul 11, 2016 at 03:54:12PM -0400, Robert Foss wrote:
> This is a reminder of this series.
> 
> On 2016-06-29 07:22 AM, robert.foss@collabora.com wrote:
> >From: Robert Foss <robert.foss@collabora.com>
> >
> >igt_crtc_prop_names and igt_atomic_crtc_properties have different orders of
> >properties, which is fixed in this patch.
> >
> >Signed-off-by: Robert Foss <robert.foss@collabora.com>
> >---
> >  lib/igt_kms.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> >index af72b90..dd4eb84 100644
> >--- a/lib/igt_kms.c
> >+++ b/lib/igt_kms.c
> >@@ -164,8 +164,8 @@ static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = {
> >
> >  static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> >  	"background_color",
> >-	"DEGAMMA_LUT",
> >  	"CTM",
> >+	"DEGAMMA_LUT",
> >  	"GAMMA_LUT",
> >  };
> >
> >

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-07-14 11:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-29 11:22 [PACTH i-g-t] lib/igt_kms: Fix different order of properties and their name strings robert.foss
2016-07-11 19:54 ` Robert Foss
2016-07-14 11:15   ` Marius Vlad

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox