[linux-3.17-rc1/drivers/gpu/drm/radeon/cik.c:1849] -> [linux-3.17-rc1/drivers/gpu/drm/radeon/cik.c:1850]: (warning) Opposite conditions in nested 'if' blocks lead to a dead code block. if (running == 0) { if (running) {
Same thing elsewhere [linux-3.17-rc1/drivers/gpu/drm/radeon/si.c:1564] -> [linux-3.17-rc1/drivers/gpu/drm/radeon/si.c:1565]: (warning) Opposite conditions in nested 'if' blocks lead to a dead code block.
Earlier versions of the code had the core part of the loop split out into a separate function so it needed the additional checks in case it was called from elsewhere. I left them in as a reminder in case the code is ever restructured.