pan/decode: Move comment out of designated initializer
authorAlyssa Rosenzweig <alyssa@collabora.com>
Sat, 8 Apr 2023 00:11:16 +0000 (20:11 -0400)
committerMarge Bot <emma+marge@anholt.net>
Mon, 10 Apr 2023 21:56:04 +0000 (21:56 +0000)
clang-format chokes on this.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22372>

src/panfrost/lib/genxml/decode_csf.c

index b3a2719..99d0f95 100644 (file)
@@ -740,10 +740,10 @@ GENX(pandecode_cs)(mali_ptr queue, uint32_t size, unsigned gpu_id,
 
    uint64_t *cs = pandecode_fetch_gpu_mem(queue, size);
 
+   /* Mali-G610 has 96 registers. Other devices not yet supported, we can make
+    * this configurable later when we encounter new Malis.
+    */
    struct queue_ctx ctx = {
-      /* Mali-G610 has 96 registers. Other devices not yet supported, we can
-       * make this configurable later when we encounter new Malis.
-       */
       .nr_regs = 96,
       .regs = regs,
       .ip = cs,