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 BF334197A82; Thu, 6 Jun 2024 14:08:42 +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=1717682922; cv=none; b=L0cP/XgkNeWuxC04BUlQbrybmMhsXtVaPXDs4W5dxSijOocQ7AmZP8ZrMdEbKodA1FX4wSSibiOCbrj006XuV+9dOnqFsDy9NR4ZzKF0lQ1Yn40qoc8DpeuKPxfdjJlKuSGF4OxKbXG6Cu1adD1MEPsfZaJvpJXPT8GW4PjDidw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717682922; c=relaxed/simple; bh=TolCHHkDrSuc79rRsUo0SvmU6OzL0JBBKmoz/SjdvzE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZNxCp/b0tJYLSNyK2OTI09GBuL6uTpVIEuAGr3tDmOBqMMxbEF25aT3Sv6m7z+K6FZ7yJnwo5ryLoyYJy5o3qGOjozeLF6DW8zye6C/WyM0Krs4CEUSbtrJXbnSPiufc/JqkHsKGj2rnfLasU7Zhx9vDcf3hxXpH7w2jMrTpMKg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=awYMBZ3o; 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="awYMBZ3o" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9C966C2BD10; Thu, 6 Jun 2024 14:08:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1717682922; bh=TolCHHkDrSuc79rRsUo0SvmU6OzL0JBBKmoz/SjdvzE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=awYMBZ3oGETnfPh889mxOJ+t0BebB0eCZhjsxTm+EmLGPzpA7f0MdToPcGmFQEi9A 8/DbO/ESJH0DcbkRJxZdym6g3C7k/yNtuUINdYAN+ckuP4FPsjBcNUQ/M0krJCNjFY TCOjHufnO+2ovmAXn9wcWGbd2f3PSaCkQxmk5qJU= 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 063/374] microblaze: Remove gcc flag for non existing early_printk.c file Date: Thu, 6 Jun 2024 16:00:42 +0200 Message-ID: <20240606131653.963835867@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 edc66cf0c4164aa3daf6cc55e970bb94383a6a57 ] early_printk support for removed long time ago but compilation flag for ftrace still points to already removed file that's why remove that line too. Fixes: 96f0e6fcc9ad ("microblaze: remove redundant early_printk support") Signed-off-by: Michal Simek Link: https://lore.kernel.org/r/5493467419cd2510a32854e2807bcd263de981a0.1712823702.git.michal.simek@amd.com Signed-off-by: Sasha Levin --- arch/microblaze/kernel/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/microblaze/kernel/Makefile b/arch/microblaze/kernel/Makefile index 4393bee64eaf8..85c4d29ef43e9 100644 --- a/arch/microblaze/kernel/Makefile +++ b/arch/microblaze/kernel/Makefile @@ -7,7 +7,6 @@ ifdef CONFIG_FUNCTION_TRACER # Do not trace early boot code and low level code CFLAGS_REMOVE_timer.o = -pg CFLAGS_REMOVE_intc.o = -pg -CFLAGS_REMOVE_early_printk.o = -pg CFLAGS_REMOVE_ftrace.o = -pg CFLAGS_REMOVE_process.o = -pg endif -- 2.43.0