summaryrefslogtreecommitdiff
path: root/lib/igt_kms.h
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2016-06-30 07:43:36 +0200
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2016-07-26 14:49:53 +0200
commit0794ebefe1b9a1590f218b4055a83685ad8cb7eb (patch)
tree73c09ea0a91944138f9d5a09ca7bb4df9ed8078e /lib/igt_kms.h
parentbcc41aede3b6ac54278ffc0951e7b61a733d4c69 (diff)
igt_kms: Make PIPE_ANY a alias for PIPE_NONE
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Ander Conselvan de Oliveira <conselvan2@gmail.com>
Diffstat (limited to 'lib/igt_kms.h')
-rw-r--r--lib/igt_kms.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 48820754..dc6be5e5 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -40,7 +40,8 @@
/* Low-level helpers with kmstest_ prefix */
enum pipe {
- PIPE_ANY = -1,
+ PIPE_NONE = -1,
+ PIPE_ANY = PIPE_NONE,
PIPE_A = 0,
PIPE_B,
PIPE_C,