From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 136B94F218; Thu, 12 Dec 2024 17:18:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734023933; cv=none; b=pvSb4qgQjWoAo5dXH0NW38XFv4iqijWGUcDxTSZt0uCJAHyuFA+xL5IDvv34f3LeAgRq6XRzqTTQODAPtJYlETAHmeBRqyQtGwP03dOSnGohbHCbbM3JXHLOmFFeJknMwrkgT70afb9/xomkJDAlN16MCDbF9APQpxAKRKckmPA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734023933; c=relaxed/simple; bh=y6xWyawzO89VlN4T6+zlWksW2r7H2Zkp/ebWsdujaUY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Upg65wMuOkGush4XByDmOspFA6rywyKesAh+EGQHHWsnrJSOT8UthcNludIt6I6DZsIHsK/FmVvxKKMB34j+2JsHX/fXhsoY8cb9lAffirGqanyhuzzSX13MevX6lmypPAmrDw91rzFoybbCAPOJmvxpsdk8O5e5lsnRly71N8w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=XAB5p45q; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="XAB5p45q" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0073BC4CED0; Thu, 12 Dec 2024 17:18:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734023932; bh=y6xWyawzO89VlN4T6+zlWksW2r7H2Zkp/ebWsdujaUY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XAB5p45qrlxMAZbTEDC+vkZrkLNCWMfyPXXdQ87L8rPQJzyWNXuZuPokcuRPDl5h/ Cia0JTPeiW1wUrNfho5KoY7+Meyej00w9s3H1Gl6zc5kn+2tRlVFqihnq/nZEltKuP 7xgPxDrLV4SYP46BjZCuC/uoil6lopbQf/yzK+80= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Steven Price , Boris Brezillon , Sasha Levin Subject: [PATCH 5.10 131/459] drm/panfrost: Remove unused id_mask from struct panfrost_model Date: Thu, 12 Dec 2024 15:57:49 +0100 Message-ID: <20241212144258.677985433@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144253.511169641@linuxfoundation.org> References: <20241212144253.511169641@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Steven Price [ Upstream commit 581d1f8248550f2b67847e6d84f29fbe3751ea0a ] The id_mask field of struct panfrost_model has never been used. Fixes: f3ba91228e8e ("drm/panfrost: Add initial panfrost driver") Signed-off-by: Steven Price Reviewed-by: Boris Brezillon Link: https://patchwork.freedesktop.org/patch/msgid/20241025140008.385081-1-steven.price@arm.com Signed-off-by: Sasha Levin --- drivers/gpu/drm/panfrost/panfrost_gpu.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/panfrost/panfrost_gpu.c b/drivers/gpu/drm/panfrost/panfrost_gpu.c index 107ad2d764ec0..bff8cddfc7698 100644 --- a/drivers/gpu/drm/panfrost/panfrost_gpu.c +++ b/drivers/gpu/drm/panfrost/panfrost_gpu.c @@ -158,7 +158,6 @@ static void panfrost_gpu_init_quirks(struct panfrost_device *pfdev) struct panfrost_model { const char *name; u32 id; - u32 id_mask; u64 features; u64 issues; struct { -- 2.43.0