From d7a8a21fa5d1259929d7c30831800a164fcca1e8 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Tue, 24 Nov 2015 12:15:06 -0600 Subject: [PATCH] intel_extreme: Style fix, no functional change --- src/add-ons/accelerants/intel_extreme/accelerant.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/accelerants/intel_extreme/accelerant.cpp b/src/add-ons/accelerants/intel_extreme/accelerant.cpp index 6fa8c32fcc..947ba0097e 100644 --- a/src/add-ons/accelerants/intel_extreme/accelerant.cpp +++ b/src/add-ons/accelerants/intel_extreme/accelerant.cpp @@ -347,9 +347,9 @@ assign_pipes() // assigned when the count is > 1; uint32 current = 0; - for (uint32 i = 0; i < gInfo->port_count; i++) { - if (gInfo->ports[i] == NULL) - continue; + for (uint32 i = 0; i < gInfo->port_count; i++) { + if (gInfo->ports[i] == NULL) + continue; pipe_index preference = gInfo->ports[i]->PipePreference(); if (preference != INTEL_PIPE_ANY) { @@ -370,7 +370,7 @@ assign_pipes() gInfo->ports[i]->SetPipe(gInfo->pipes[current]); current++; } - } + } return B_OK; }