intel_extreme: Style fix, no functional change

This commit is contained in:
Alexander von Gluck IV 2015-11-24 12:15:06 -06:00
parent b01aed8310
commit d7a8a21fa5

View File

@ -347,9 +347,9 @@ assign_pipes()
// assigned when the count is > 1; // assigned when the count is > 1;
uint32 current = 0; uint32 current = 0;
for (uint32 i = 0; i < gInfo->port_count; i++) { for (uint32 i = 0; i < gInfo->port_count; i++) {
if (gInfo->ports[i] == NULL) if (gInfo->ports[i] == NULL)
continue; continue;
pipe_index preference = gInfo->ports[i]->PipePreference(); pipe_index preference = gInfo->ports[i]->PipePreference();
if (preference != INTEL_PIPE_ANY) { if (preference != INTEL_PIPE_ANY) {
@ -370,7 +370,7 @@ assign_pipes()
gInfo->ports[i]->SetPipe(gInfo->pipes[current]); gInfo->ports[i]->SetPipe(gInfo->pipes[current]);
current++; current++;
} }
} }
return B_OK; return B_OK;
} }