drm/radeon: fix formatting

Preparatory patch: patches to follow will touch a piece of code
that had broken indentication, so fix it before touching it.

Signed-off-by: Ilija Hadzic <ihadzic@research.bell-labs.com>
Reviewed-by: Marek Olšák <maraeo@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Ilija Hadzic 2013-01-02 18:27:39 -05:00 committed by Alex Deucher
parent d201450435
commit 66b3543ef3

View file

@ -2128,9 +2128,8 @@ int r100_cs_parse(struct radeon_cs_parser *p)
pkt.type); pkt.type);
return -EINVAL; return -EINVAL;
} }
if (r) { if (r)
return r; return r;
}
} while (p->idx < p->chunks[p->chunk_ib_idx].length_dw); } while (p->idx < p->chunks[p->chunk_ib_idx].length_dw);
return 0; return 0;
} }