diff --git a/src/panfrost/midgard/helpers.h b/src/panfrost/midgard/helpers.h index f2161c7a650..ac062e0be07 100644 --- a/src/panfrost/midgard/helpers.h +++ b/src/panfrost/midgard/helpers.h @@ -99,11 +99,10 @@ /* Denotes an opcode that takes a vector input with a fixed-number of * channels, but outputs to only a single output channel, like dot products. * For these, to determine the effective mask, this quirk can be set. We have - * an intentional off-by-one (a la MALI_POSITIVE), since 0-channel makes no - * sense but we need to fit 4 channels in 2-bits. Similarly, 1-channel doesn't - * make sense (since then why are we quirked?), so that corresponds to "no - * count set" */ - + * an intentional off-by-one, since 0-channel makes no sense but we need to fit + * 4 channels in 2-bits. Similarly, 1-channel doesn't make sense (since then why + * are we quirked?), so that corresponds to "no count set". + */ #define OP_CHANNEL_COUNT(c) ((c - 1) << 0) #define GET_CHANNEL_COUNT(c) ((c & (0x3 << 0)) ? ((c & (0x3 << 0)) + 1) : 0)