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.90_1 #2 (Red Hat Linux)) id 1gRD27-0000ey-TP for barebox@lists.infradead.org; Mon, 26 Nov 2018 09:18:28 +0000 From: Oleksij Rempel Date: Mon, 26 Nov 2018 10:18:04 +0100 Message-Id: <20181126091807.19398-8-o.rempel@pengutronix.de> In-Reply-To: <20181126091807.19398-1-o.rempel@pengutronix.de> References: <20181126091807.19398-1-o.rempel@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 v1 07/10] MIPS: put main_entry to __bare_init section To: barebox@lists.infradead.org Cc: Oleksij Rempel To make disassambly easier to read. With this patch main_entry will be at the start of the text section and not in the middle. Signed-off-by: Oleksij Rempel --- arch/mips/boot/main_entry.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/mips/boot/main_entry.c b/arch/mips/boot/main_entry.c index e51e1b2f96..e33ae64e72 100644 --- a/arch/mips/boot/main_entry.c +++ b/arch/mips/boot/main_entry.c @@ -16,6 +16,7 @@ * */ +#include #include #include #include @@ -79,7 +80,7 @@ extern u32 glob_fdt_size; * * @note The C environment isn't initialized yet */ -void main_entry(void *fdt, u32 fdt_size) +void __bare_init main_entry(void *fdt, u32 fdt_size) { /* clear the BSS first */ memset(__bss_start, 0x00, __bss_stop - __bss_start); -- 2.19.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox