Ports.cpp: fix gcc6 build

* Reindent source code, to fix gcc6
  '-Werror=misleading-indentation' warnings.
This commit is contained in:
Murai Takashi 2016-05-05 17:06:04 +09:00 committed by Alexander von Gluck IV
parent 50b0cba0c4
commit 5265115b17
1 changed files with 4 additions and 4 deletions

View File

@ -130,10 +130,10 @@ Port::SetPipe(Pipe* pipe)
uint32 portState = read32(portRegister);
if (pipe->Index() == INTEL_PIPE_A)
write32(portRegister, portState & ~DISPLAY_MONITOR_PIPE_B);
else
write32(portRegister, portState | DISPLAY_MONITOR_PIPE_B);
if (pipe->Index() == INTEL_PIPE_A)
write32(portRegister, portState & ~DISPLAY_MONITOR_PIPE_B);
else
write32(portRegister, portState | DISPLAY_MONITOR_PIPE_B);
fPipe = pipe;