diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-11-25 15:33:13 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-11-25 15:33:13 +0000 |
commit | 98efd7f5d94586f8d7c5b2e9c5515f4b37149b08 (patch) | |
tree | 1767d2e718fd1baec721373825939fc309cf1c8c /src/sna/sna_display.c | |
parent | 42f325a87c336211ebb3ebcafc9130eff10cee93 (diff) |
sna: Log mode switches on virtual outputs
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/sna_display.c')
-rw-r--r-- | src/sna/sna_display.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c index 8982d6a4..3cf669d1 100644 --- a/src/sna/sna_display.c +++ b/src/sna/sna_display.c @@ -1499,10 +1499,9 @@ sna_crtc_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, return FALSE; xf86DrvMsg(crtc->scrn->scrnIndex, X_INFO, - "switch to mode %dx%d@%.1f on pipe %d using %s, position (%d, %d), rotation %s\n", + "switch to mode %dx%d@%.1f on %s using pipe %d, position (%d, %d), rotation %s\n", mode->HDisplay, mode->VDisplay, xf86ModeVRefresh(mode), - sna_crtc->pipe, - outputs_for_crtc(crtc, outputs, sizeof(outputs)), + outputs_for_crtc(crtc, outputs, sizeof(outputs)), sna_crtc->pipe, x, y, rotation_to_str(rotation)); assert(mode->HDisplay <= sna->mode.kmode->max_width && |