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 529CB197559; Thu, 6 Jun 2024 14:08:43 +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=1717682923; cv=none; b=MTriUzGThmW+/9QpzWxaBocWzuYChwK7q9OGrdh3lhPyrcAmxDAW+f2cSeBqTW8kjwf1Mo9QYyk+lj2PW4V1TE/iL2AoRJxj6tbrJxteX2oC8qkuKiB3r0m3ozmey62yAy4kqDNlOzyi7CIrwDd9wwh8gu96mxc2GVjZx26cKms= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717682923; c=relaxed/simple; bh=cKAUM6QXBeMGfJj2zfapWXzTKgOT3WfVt7ZBCXTVCKU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=qzw2d/KbgzJ8z+AMZYqqchyn8H0zYT+gz7cM4U7o1ebbZOoJjwPsx3M8q5spdqnk+Qezo35vl0poIpRVTstI8IeKLpqWLBWB5U1s6V3ZunLO0d3kYECG+IZ0GGe68pv/0WgOyNO0Y4lV+/CVCJBtN1EZjLSKbBVPirv5/rHVoWE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hghPFLkh; 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="hghPFLkh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 30D3EC2BD10; Thu, 6 Jun 2024 14:08:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1717682923; bh=cKAUM6QXBeMGfJj2zfapWXzTKgOT3WfVt7ZBCXTVCKU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hghPFLkhrucgqTacBOj1Uz/JE1gpAkC3FBbiudQWEujrwFC9F3cIdwO002vayv4nU 49JoJh8blNvqpL+6ctSZ2MNvkj4pL/R0szF27pcg2uSr53GWty4RnGU6H6Eeg0+fHm yDrgt72GsZ8tC6myILQ29x6TM83CdbDBD9GmOuc8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Michal Simek , Sasha Levin Subject: [PATCH 6.9 064/374] microblaze: Remove early printk call from cpuinfo-static.c Date: Thu, 6 Jun 2024 16:00:43 +0200 Message-ID: <20240606131653.991663934@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240606131651.683718371@linuxfoundation.org> References: <20240606131651.683718371@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Michal Simek [ Upstream commit 58d647506c92ccd3cfa0c453c68ddd14f40bf06f ] Early printk has been removed already that's why also remove calling it. Similar change has been done in cpuinfo-pvr-full.c by commit cfbd8d1979af ("microblaze: Remove early printk setup"). Fixes: 96f0e6fcc9ad ("microblaze: remove redundant early_printk support") Signed-off-by: Michal Simek Link: https://lore.kernel.org/r/2f10db506be8188fa07b6ec331caca01af1b10f8.1712824039.git.michal.simek@amd.com Signed-off-by: Sasha Levin --- arch/microblaze/kernel/cpu/cpuinfo-static.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/microblaze/kernel/cpu/cpuinfo-static.c b/arch/microblaze/kernel/cpu/cpuinfo-static.c index 85dbda4a08a81..03da36dc6d9c9 100644 --- a/arch/microblaze/kernel/cpu/cpuinfo-static.c +++ b/arch/microblaze/kernel/cpu/cpuinfo-static.c @@ -18,7 +18,7 @@ static const char family_string[] = CONFIG_XILINX_MICROBLAZE0_FAMILY; static const char cpu_ver_string[] = CONFIG_XILINX_MICROBLAZE0_HW_VER; #define err_printk(x) \ - early_printk("ERROR: Microblaze " x "-different for kernel and DTS\n"); + pr_err("ERROR: Microblaze " x "-different for kernel and DTS\n"); void __init set_cpuinfo_static(struct cpuinfo *ci, struct device_node *cpu) { -- 2.43.0