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 AF03F19EE05; Sun, 24 Mar 2024 22:42:55 +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=1711320175; cv=none; b=N4hpBhbluh8NnANByrlXLo8T6edie4tKwdsX34wxZBupA0CkXmp5o1tPu99E4zcAEpBTAsqZuQ2O8qB81whEjxRKKRGjsPy4jNCdoI/4WwbIqlgTkQtBlAyP5XY2SAbBmtnxEJE9zX3OA4J//+KHXMeUDgxx3aIddxJhGgmuRtE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711320175; c=relaxed/simple; bh=97fYqvoyWoojc4WVtMU5TN0AQq0iEGtqgA6cQ1Sz7iA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=F2o4LT1amJKe0oBXLdPaA6lOUcNZEDsGoMLoOk3sJoz/2Va9r8h6IWV3TUsG5z26vGQFdgSfXaZCLb3xckIV9vkYdZBCPEpPirElWxslZdOI/MoTr8x2HDGBYeRN3Bk2qLFHPHyaZsP9IVYQro1/XQhAu7U9SUljhwxizo6H1BQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Ip+5CDQU; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Ip+5CDQU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A5BF5C433F1; Sun, 24 Mar 2024 22:42:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711320175; bh=97fYqvoyWoojc4WVtMU5TN0AQq0iEGtqgA6cQ1Sz7iA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ip+5CDQULsKJbQYBKWqtDZAF6FcS5q5ksUUdt3wPatODbG2m+2K5m+nx+R9YLVjK0 9df7uV+D7eAeb2Fswjt6b5L4ScH4f5z5SijsonQggh40WeXjUC1f/ekXEtBXVX2HP6 A4cSxSbZm2o7k5nRjJ584A08Bp7ln/wgQGSOdfaxWaerKm4EmTm1jiNDc2luXiBxVx SeRm03nL8MLJpDL5HgVbwZu+2D52pCs8sDiJXo8eudWkBiBFfBc30PFRtFwSCcRePx pSuVwEk/UGlkMis45yjVIX4JpoEentWjNNVQM2qVxMVqMUCN18rJa61eDBaAHHJkHf mFBae/6/NgBig== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Rob Clark , Konrad Dybcio , Sasha Levin Subject: [PATCH 6.8 483/715] drm/msm/a7xx: Fix LLC typo Date: Sun, 24 Mar 2024 18:31:02 -0400 Message-ID: <20240324223455.1342824-484-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240324223455.1342824-1-sashal@kernel.org> References: <20240324223455.1342824-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Rob Clark [ Upstream commit 0776ad9274d96d132131af66a5941df45b9d46b4 ] We'd miss actually activating LLC. Signed-off-by: Rob Clark Reviewed-by: Konrad Dybcio Fixes: af66706accdf ("drm/msm/a6xx: Add skeleton A7xx support") Patchwork: https://patchwork.freedesktop.org/patch/573043/ Signed-off-by: Sasha Levin --- drivers/gpu/drm/msm/adreno/a6xx_gpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/msm/adreno/a6xx_gpu.c b/drivers/gpu/drm/msm/adreno/a6xx_gpu.c index dc80e5940f51e..fd60e49b8ec4d 100644 --- a/drivers/gpu/drm/msm/adreno/a6xx_gpu.c +++ b/drivers/gpu/drm/msm/adreno/a6xx_gpu.c @@ -2426,7 +2426,7 @@ static int a6xx_gmu_pm_resume(struct msm_gpu *gpu) msm_devfreq_resume(gpu); - adreno_is_a7xx(adreno_gpu) ? a7xx_llc_activate : a6xx_llc_activate(a6xx_gpu); + adreno_is_a7xx(adreno_gpu) ? a7xx_llc_activate(a6xx_gpu) : a6xx_llc_activate(a6xx_gpu); return ret; } -- 2.43.0