[Intel-gfx] [PATCH] Print the pixel clock of each mode.

yi.sun at intel.com yi.sun at intel.com
Mon May 30 17:55:22 CEST 2011


From: Sun Yi <yi.sun at intel.com>

---
 tests/testdisplay.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/tests/testdisplay.c b/tests/testdisplay.c
index 41a5753..1efc6e5 100644
--- a/tests/testdisplay.c
+++ b/tests/testdisplay.c
@@ -157,7 +157,7 @@ struct connector {
 
 static void dump_mode(drmModeModeInfo *mode)
 {
-	printf("  %s %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n",
+	printf("  %s %d %d %d %d %d %d %d %d %d 0x%x 0x%x %d\n",
 	       mode->name,
 	       mode->vrefresh,
 	       mode->hdisplay,
@@ -169,7 +169,8 @@ static void dump_mode(drmModeModeInfo *mode)
 	       mode->vsync_end,
 	       mode->vtotal,
 	       mode->flags,
-	       mode->type);
+	       mode->type,
+	       mode->clock);
 }
 
 static void dump_connectors(void)
@@ -201,7 +202,7 @@ static void dump_connectors(void)
 
 		printf("  modes:\n");
 		printf("  name refresh (Hz) hdisp hss hse htot vdisp "
-		       "vss vse vtot flags type\n");
+		       "vss vse vtot flags type clock\n");
 		for (j = 0; j < connector->count_modes; j++)
 			dump_mode(&connector->modes[j]);
 
-- 
1.7.5.1




More information about the Intel-gfx mailing list