Commit 317ab1b9 authored by Rob Clark's avatar Rob Clark
Browse files

drm/msm/a690: Remove revn and name



These fields are deprecated.  But any userspace new enough to support
a690 also knows how to identify the GPU based on chip-id.

Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
Reviewed-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/545552/
parent 71643600
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -369,8 +369,6 @@ static const struct adreno_info gpulist[] = {
		.hwcg = a640_hwcg,
	}, {
		.rev = ADRENO_REV(6, 9, 0, ANY_ID),
		.revn = 690,
		.name = "A690",
		.fw = {
			[ADRENO_FW_SQE] = "a660_sqe.fw",
			[ADRENO_FW_GMU] = "a690_gmu.bin",
+2 −1
Original line number Diff line number Diff line
@@ -310,7 +310,8 @@ static inline int adreno_is_a680(const struct adreno_gpu *gpu)

static inline int adreno_is_a690(const struct adreno_gpu *gpu)
{
	return adreno_is_revn(gpu, 690);
	/* The order of args is important here to handle ANY_ID correctly */
	return adreno_cmp_rev(ADRENO_REV(6, 9, 0, ANY_ID), gpu->rev);
};

/* check for a615, a616, a618, a619 or any derivatives */