Skip to content

Commit 181914b

Browse files
superna9999robclark
authored andcommitted
drm/msm/adreno: fix a7xx gpu init
The gpulist has twice the a6xx gpulist, replace the second one with the a7xx gpulist. Solves: msm_dpu ae01000.display-controller: Unknown GPU revision: 7.3.0.1 msm_dpu ae01000.display-controller: Unknown GPU revision: 67.5.10.1 msm_dpu ae01000.display-controller: Unknown GPU revision: 67.5.20.1 on SM8450, SM8550 & SM8560. Fixes: 8ed322f ("drm/msm/adreno: Split up giant device table") Signed-off-by: Neil Armstrong <[email protected]> Reviewed-by: Dmitry Baryshkov <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Patchwork: https://patchwork.freedesktop.org/patch/600939/ Signed-off-by: Rob Clark <[email protected]>
1 parent add1585 commit 181914b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/msm/adreno/adreno_device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static const struct adreno_gpulist *gpulists[] = {
3333
&a4xx_gpulist,
3434
&a5xx_gpulist,
3535
&a6xx_gpulist,
36-
&a6xx_gpulist,
36+
&a7xx_gpulist,
3737
};
3838

3939
static const struct adreno_info *adreno_info(uint32_t chip_id)

0 commit comments

Comments
 (0)