Commit 9bec4399 authored by Konrad Dybcio's avatar Konrad Dybcio Committed by Rob Clark
Browse files

drm/msm/adreno: Fix up formatting



Leading spaces are not something checkpatch likes, and it says so when
they are present. Use tabs consistently to indent function body and
unwrap a 83-char-long line, as 100 is cool nowadays.

Signed-off-by: default avatarKonrad Dybcio <konrad.dybcio@somainline.org>
Reviewed-by: default avatarAkhil P Oommen <quic_akhilpo@quicinc.com>
Patchwork: https://patchwork.freedesktop.org/patch/487592/
Link: https://lore.kernel.org/r/20220528160353.157870-4-konrad.dybcio@somainline.org


Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
parent fba6767c
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -287,8 +287,7 @@ static inline int adreno_is_a660_family(struct adreno_gpu *gpu)
/* check for a650, a660, or any derivatives */
static inline int adreno_is_a650_family(struct adreno_gpu *gpu)
{
       return gpu->revn == 650 || gpu->revn == 620 ||
	       adreno_is_a660_family(gpu);
	return gpu->revn == 650 || gpu->revn == 620 || adreno_is_a660_family(gpu);
}

int adreno_get_param(struct msm_gpu *gpu, struct msm_file_private *ctx,