aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Koƛcielnicki <koriakin@0x04.net>2010-02-27 15:04:42 +0000
committerJakob Bornecrantz <jakob@vmware.com>2010-02-28 00:25:22 +0000
commit694ef59532253727176ed0ce9077ae3ec41dd457 (patch)
treea5a5f0013e3f2451e87d3a8332fbfcc3ace0ac05
parentecb668e1efd30512d27f5bfc331e8e754b6e15ca (diff)
tests: vrefresh is actually not * 1000.
-rw-r--r--tests/modeprint/modeprint.c4
-rw-r--r--tests/modetest/modetest.c4
-rw-r--r--xf86drmMode.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/modeprint/modeprint.c b/tests/modeprint/modeprint.c
index 89719147..4c612f41 100644
--- a/tests/modeprint/modeprint.c
+++ b/tests/modeprint/modeprint.c
@@ -81,8 +81,8 @@ int printMode(struct drm_mode_modeinfo *mode)
printf("\tvrefresh : %i\n", mode->vrefresh);
printf("\tflags : %i\n", mode->flags);
} else {
- printf("Mode: \"%s\" %ix%i %.0f\n", mode->name,
- mode->hdisplay, mode->vdisplay, mode->vrefresh / 1000.0);
+ printf("Mode: \"%s\" %ix%i %i\n", mode->name,
+ mode->hdisplay, mode->vdisplay, mode->vrefresh);
}
return 0;
}
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c
index 124bf568..faad0b79 100644
--- a/tests/modetest/modetest.c
+++ b/tests/modetest/modetest.c
@@ -143,9 +143,9 @@ void dump_encoders(void)
void dump_mode(drmModeModeInfo *mode)
{
- printf(" %s %.02f %d %d %d %d %d %d %d %d\n",
+ printf(" %s %d %d %d %d %d %d %d %d %d\n",
mode->name,
- (float)mode->vrefresh / 1000,
+ mode->vrefresh,
mode->hdisplay,
mode->hsync_start,
mode->hsync_end,
diff --git a/xf86drmMode.h b/xf86drmMode.h
index 44d90ed1..ee7c4544 100644
--- a/xf86drmMode.h
+++ b/xf86drmMode.h
@@ -181,7 +181,7 @@ typedef struct _drmModeModeInfo {
uint16_t hdisplay, hsync_start, hsync_end, htotal, hskew;
uint16_t vdisplay, vsync_start, vsync_end, vtotal, vscan;
- uint32_t vrefresh; /* vertical refresh * 1000 */
+ uint32_t vrefresh;
uint32_t flags;
uint32_t type;