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 ADE0E216606; Thu, 12 Dec 2024 15:36:44 +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=1734017804; cv=none; b=AstyGI1xcDk260407dvyMGwE89HdSV8KXpLSkDvs7Yoqs3l+ENFyBV8sCm/ia+sAKocDt9/s5ni6A11iUVZBR9zXKq5UScr8JkXn7WpqOgxGlhfRFu0g8KmMsh6AtUHSWSeRa71vF1tL6zppH+1RKiUe+YcsD9l+McTnahpkhuM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734017804; c=relaxed/simple; bh=GK9HxURILctyIOjj9XyfNzRWYW+/+8l4tu/NsY7CpMA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=aZjbpiLLXC8Vfose4QHpaTvgA01zqFCVsKZTBB5NOFnE8qRQKkYrx3pL0hnbeBzdfgiMDm51dEhFzpVIBqjAdTtsS9vg4s3ZdKl9ISE5wwH0AuIDNt1lvJkqNXtWiV+FBXDR3W4u+d3zqjSQOITqJ3SEyRTRtlQG3WDjKt8f+nA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=M5rao4xX; 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="M5rao4xX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 246CAC4CECE; Thu, 12 Dec 2024 15:36:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734017804; bh=GK9HxURILctyIOjj9XyfNzRWYW+/+8l4tu/NsY7CpMA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=M5rao4xXtA4fH6JKRfqUjjEgixcMxUPq8D7B5JILU/yhEvMrdzVEzeuYomCz1pDs8 hV+PKuPCbKPW6Lbku9Joiq7vKp0c+MWpBFaZQJT/S9/hlcHRsd9O5xYQVR0y2Zub7+ cxi+Pk+Sx6t8iBr91WjlAt4M2RbI+0VK81hRjoAQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Pei Xiao , Raphael Gallais-Pou , Raphael Gallais-Pou , Sasha Levin Subject: [PATCH 6.6 115/356] drm/sti: Add __iomem for mixer_dbg_mxns parameter Date: Thu, 12 Dec 2024 15:57:14 +0100 Message-ID: <20241212144249.194948327@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144244.601729511@linuxfoundation.org> References: <20241212144244.601729511@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 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pei Xiao [ Upstream commit 86e8f94789dd6f3e705bfa821e1e416f97a2f863 ] Sparse complains about incorrect type in argument 1. expected void const volatile __iomem *ptr but got void *. so modify mixer_dbg_mxn's addr parameter. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202411191809.6V3c826r-lkp@intel.com/ Fixes: a5f81078a56c ("drm/sti: add debugfs entries for MIXER crtc") Signed-off-by: Pei Xiao Acked-by: Raphael Gallais-Pou Link: https://patchwork.freedesktop.org/patch/msgid/c28f0dcb6a4526721d83ba1f659bba30564d3d54.1732087094.git.xiaopei01@kylinos.cn Signed-off-by: Raphael Gallais-Pou Signed-off-by: Sasha Levin --- drivers/gpu/drm/sti/sti_mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/sti/sti_mixer.c b/drivers/gpu/drm/sti/sti_mixer.c index 7e5f14646625b..06c1b81912f79 100644 --- a/drivers/gpu/drm/sti/sti_mixer.c +++ b/drivers/gpu/drm/sti/sti_mixer.c @@ -137,7 +137,7 @@ static void mixer_dbg_crb(struct seq_file *s, int val) } } -static void mixer_dbg_mxn(struct seq_file *s, void *addr) +static void mixer_dbg_mxn(struct seq_file *s, void __iomem *addr) { int i; -- 2.43.0