asahi: Add some clang-format commas

Otherwise clang-format will mangle this.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20434>
This commit is contained in:
Alyssa Rosenzweig
2022-12-26 09:55:19 -05:00
committed by Marge Bot
parent c1f175c9fa
commit d9dc77f068
5 changed files with 13 additions and 13 deletions

View File

@@ -659,7 +659,7 @@ agx_after_block(agx_block *block)
{
return (agx_cursor) {
.option = agx_cursor_after_block,
.block = block
.block = block,
};
}
@@ -668,7 +668,7 @@ agx_before_instr(agx_instr *instr)
{
return (agx_cursor) {
.option = agx_cursor_before_instr,
.instr = instr
.instr = instr,
};
}
@@ -677,7 +677,7 @@ agx_after_instr(agx_instr *instr)
{
return (agx_cursor) {
.option = agx_cursor_after_instr,
.instr = instr
.instr = instr,
};
}
@@ -730,7 +730,7 @@ agx_init_builder(agx_context *ctx, agx_cursor cursor)
{
return (agx_builder) {
.shader = ctx,
.cursor = cursor
.cursor = cursor,
};
}