diff options
author | Tormod Volden <debian.tormod@gmail.com> | 2011-03-31 23:13:55 +0200 |
---|---|---|
committer | Tormod Volden <debian.tormod@gmail.com> | 2011-03-31 23:16:00 +0200 |
commit | a4f93e8860494285444e6b8a6ba801b9db8c9cdc (patch) | |
tree | e07af121f85810378714ef981d4cb615a886b46a | |
parent | aff8f966c6d3f7dbad2d92d040ce7f5c4b286eef (diff) |
Fix wrong frequency unit in trace output
The mode pixel clock frequency is in kHz, not Hz.
Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
-rw-r--r-- | src/savage_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/savage_driver.c b/src/savage_driver.c index 3098731..2aa50f4 100644 --- a/src/savage_driver.c +++ b/src/savage_driver.c @@ -3666,7 +3666,7 @@ static Bool SavageModeInit(ScrnInfoPtr pScrn, DisplayModePtr mode) vgaCRIndex = vgaIOBase + 4; vgaCRReg = vgaIOBase + 5; - TRACE(("SavageModeInit(%dx%d, %dHz)\n", + TRACE(("SavageModeInit(%dx%d, %dkHz)\n", mode->HDisplay, mode->VDisplay, mode->Clock)); #if 0 |