diff --git a/.pick_status.json b/.pick_status.json index 58d4678ec44..01b170dacb8 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -184,7 +184,7 @@ "description": "panfrost: Fix group priorities in drm-shim", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "2237cff1af9096fffb691dd07930dd816907dc35", "notes": null diff --git a/src/panfrost/drm-shim/panfrost_noop.c b/src/panfrost/drm-shim/panfrost_noop.c index 1edd60098d4..d375964464d 100644 --- a/src/panfrost/drm-shim/panfrost_noop.c +++ b/src/panfrost/drm-shim/panfrost_noop.c @@ -216,7 +216,7 @@ panthor_ioctl_dev_query(int fd, unsigned long request, void *arg) /* Default values */ priorities_info->allowed_mask = - PANTHOR_GROUP_PRIORITY_LOW | PANTHOR_GROUP_PRIORITY_MEDIUM; + BITFIELD_BIT(PANTHOR_GROUP_PRIORITY_LOW) | BITFIELD_BIT(PANTHOR_GROUP_PRIORITY_MEDIUM); return 0; }