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 A4FA01974E3; Thu, 6 Jun 2024 14:18: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=1717683524; cv=none; b=dkOFYHCKXaMXCxoJnEXlc7qRpdlQaPeZIYP2CI27iKwYpCETWecNGlltnC9iy5tBFlgzLK73r4tY4wLIc5aaejeomG6XR8rRBjeN3DZM4AQxkPR4QnarHKeP927iN9eivpOABcRlUv8c7D3xhPDimGmYWTm2/o9/4VqddjJhXsA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717683524; c=relaxed/simple; bh=vQQHGPS7vGPlaXlCPuBEr6Glazd2ctBGsf0KkUOQa5A=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=El2JunuKT87/6qJH34gEYEVpQCXocZwf+qsvaeCu6QMz6yy0jEfVPtnOQ6OMTck/XNfNcR6n9crpwqcfW+ewIPVzHXTYKoR6yc2qrxsZZ90DInytlbRz2B0ovCXFsUErr9w3nMuFTJ6JL8zHHoxMOhxHtxaIKvByp5HrkhfjAbk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qTTdIUFr; 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="qTTdIUFr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83558C2BD10; Thu, 6 Jun 2024 14:18:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1717683524; bh=vQQHGPS7vGPlaXlCPuBEr6Glazd2ctBGsf0KkUOQa5A=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qTTdIUFr4iyPZsZJdCm2cGpgpx8oNRCs0+Vt0XTm2C8iSC4MrxtVKNyB4udA5/8iq K3/67ifzhF3lbWvFGmEkXRFEwRjQ1pjX9hsGFLGZIxR2m97aLHXBc3eNwTyG4zdqbI 9Rff0zXbxbRCYCG90x+f0+YH9EAw+YntiZ+hQLLs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Michal Simek , Sasha Levin Subject: [PATCH 6.6 465/744] microblaze: Remove early printk call from cpuinfo-static.c Date: Thu, 6 Jun 2024 16:02:17 +0200 Message-ID: <20240606131747.383021753@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240606131732.440653204@linuxfoundation.org> References: <20240606131732.440653204@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.6-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