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 0CD7114199C; Thu, 13 Jun 2024 12:37:33 +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=1718282253; cv=none; b=Dd8R73OB/pTg/XOe0AZqGH7S1mXsct6VKm07RE8VDxvEOnov+JNYwZFnwbi6Jll+6/qQMzXiZlS1KrJ5JDvLsBjuMolTzYaQ9bbYP4RzgE2VLki19iMKq0/v5XHexixYFr00uxuudBhSzKNP5z/IYgyYO27LngmZsfCv5ruS5U4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1718282253; c=relaxed/simple; bh=yF1K98g1TDZmzfsBuVJTwFKjuqMAzLENt6P2tCNLz0k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WiH6FDw/eHle+cYucYEeNQZAJViyPSUDgg/HWZXwPUWc3Hrusfk/k36FkYfkXHEanqNpAQ3ly3ClRt27iQijkwe05JZeNYqSs3/NRxwzB8y/3x+jwsdrKcNMd13OrBmw4ih+4hHNl6CwtbABU549W1KxzMNIsUYgTskuZeixge8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=n/Hz6m16; 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="n/Hz6m16" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 57B90C2BBFC; Thu, 13 Jun 2024 12:37:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1718282252; bh=yF1K98g1TDZmzfsBuVJTwFKjuqMAzLENt6P2tCNLz0k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=n/Hz6m1659EXlSKnebkzorh39ftp5rRwBCI0K52ydeyU9mfIp6OH2vhbcE4uMJzf1 mZGuN6VE5bcMqK5YfXKzwlUCUcqAVXGYyjVKFYo+piLGQF0LVcr1LK1W0bWbjyW5NV 6kSWRhcSkp1tgdmjQJaoP1Rs2cTNIAh2NUVg92E4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Michal Simek , Sasha Levin Subject: [PATCH 5.15 213/402] microblaze: Remove early printk call from cpuinfo-static.c Date: Thu, 13 Jun 2024 13:32:50 +0200 Message-ID: <20240613113310.457941322@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240613113302.116811394@linuxfoundation.org> References: <20240613113302.116811394@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.15-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