From 0a92c1ea634b866d3f05cc249756687d4102b347 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Thu, 8 Mar 2012 05:52:57 -0600 Subject: [PATCH] radeon_hd: White space / line length cleanup. * No functional change. --- src/add-ons/accelerants/radeon_hd/connector.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/add-ons/accelerants/radeon_hd/connector.cpp b/src/add-ons/accelerants/radeon_hd/connector.cpp index 4ecf50867e..3047eaac69 100644 --- a/src/add-ons/accelerants/radeon_hd/connector.cpp +++ b/src/add-ons/accelerants/radeon_hd/connector.cpp @@ -228,12 +228,13 @@ connector_read_mode_lvds(uint32 connectorIndex, display_mode* mode) // Assume 32-bit color mode->space = B_RGB32_LITTLE; - - TRACE("%s: %" B_PRIu32 " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 - " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 "\n", - __func__, timing.pixel_clock, timing.h_display, timing.h_sync_start, - timing.h_sync_end, timing.h_total, timing.v_display, timing.v_sync_start, - timing.v_sync_end, timing.v_total); + + TRACE("%s: %" B_PRIu32 " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 + " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 " %" B_PRIu16 + " %" B_PRIu16 "\n", __func__, timing.pixel_clock, timing.h_display, + timing.h_sync_start, timing.h_sync_end, timing.h_total, + timing.v_display, timing.v_sync_start, timing.v_sync_end, + timing.v_total); return true; }