diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index 67766f7701b..aee8241c2a3 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -851,7 +851,7 @@ panfrost_create_screen(int fd, struct renderonly *ro) case 0x6221: /* G72 */ case 0x7093: /* G31 */ case 0x7212: /* G52 */ - case 0x7402: /* G52L */ + case 0x7402: /* G52r1 */ break; default: /* Fail to load against untested models */ diff --git a/src/panfrost/include/panfrost-quirks.h b/src/panfrost/include/panfrost-quirks.h index 4c46e2ab4c4..5c9000647ce 100644 --- a/src/panfrost/include/panfrost-quirks.h +++ b/src/panfrost/include/panfrost-quirks.h @@ -116,7 +116,7 @@ panfrost_get_quirks(unsigned gpu_id, unsigned gpu_revision) case 0x7093: /* G31 */ case 0x7212: /* G52 */ - case 0x7402: /* G52L */ + case 0x7402: /* G52r1 */ return BIFROST_QUIRKS | HAS_ANISOTROPIC; default: diff --git a/src/panfrost/lib/pan_props.c b/src/panfrost/lib/pan_props.c index 1c610f08dc6..3837d1e7730 100644 --- a/src/panfrost/lib/pan_props.c +++ b/src/panfrost/lib/pan_props.c @@ -217,7 +217,7 @@ panfrost_model_name(unsigned gpu_id) case 0x6221: return "Mali G72 (Panfrost)"; case 0x7093: return "Mali G31 (Panfrost)"; case 0x7212: return "Mali G52 (Panfrost)"; - case 0x7402: return "Mali G52L (Panfrost)"; + case 0x7402: return "Mali G52r1 (Panfrost)"; default: unreachable("Invalid GPU ID"); }