From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1j44wK-0004a7-QK for barebox@lists.infradead.org; Tue, 18 Feb 2020 15:37:38 +0000 From: Sascha Hauer Date: Tue, 18 Feb 2020 16:37:28 +0100 Message-Id: <20200218153732.14845-3-s.hauer@pengutronix.de> In-Reply-To: <20200218153732.14845-1-s.hauer@pengutronix.de> References: <20200218153732.14845-1-s.hauer@pengutronix.de> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 2/6] ARM: i.MX Phytec phycard i.MX27: replace __naked with noinline To: Barebox List phytec_phycard_imx27_common_init() doesn't need to be __naked, because the stack has already been setup. What we want to have though is the noinline attribute to make sure phytec_phycard_imx27_common_init() is indeed a separate function which is called with initialized stack. Signed-off-by: Sascha Hauer --- arch/arm/boards/phytec-phycard-imx27/lowlevel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boards/phytec-phycard-imx27/lowlevel.c b/arch/arm/boards/phytec-phycard-imx27/lowlevel.c index ded85ee80f..894f560fa8 100644 --- a/arch/arm/boards/phytec-phycard-imx27/lowlevel.c +++ b/arch/arm/boards/phytec-phycard-imx27/lowlevel.c @@ -79,7 +79,7 @@ static void sdram_init(int sdram) extern char __dtb_imx27_phytec_phycard_s_rdk_bb_start[]; -static void __bare_init __naked phytec_phycard_imx27_common_init(int sdram) +static noinline void __bare_init phytec_phycard_imx27_common_init(int sdram) { void *fdt; unsigned long r; -- 2.25.0 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox