Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd3bb8c1 authored by Helge Deller's avatar Helge Deller Committed by Kyle McMartin
Browse files

parisc: fix trivial section name warnings



This trivial patch fixes the following section warnings on PARISC:
> WARNING: vmlinux.o (.text.1): unexpected section name.
>The (.[number]+) following section name are ld generated and not expected.
> Did you forget to use "ax"/"aw" in a .S file?
> Note that for example <linux/init.h> contains
> section definitions for use in .S files.

Signed-off-by: default avatarHelge Deller <deller@gmx.de>
Signed-off-by: default avatarKyle McMartin <kyle@mcmartin.ca>
parent 492c2e47
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -13,9 +13,10 @@
#include <asm/unistd.h>
#include <asm/errno.h>
#include <linux/linkage.h>
#include <linux/init.h>

	.level	LEVEL
	.text
	__HEAD

	.import hpux_call_table
	.import hpux_syscall_exit,code
+2 −1
Original line number Diff line number Diff line
@@ -28,9 +28,10 @@
#include <asm/assembly.h>
#include <asm/signal.h>
#include <linux/linkage.h>
#include <linux/init.h>

	.level	LEVEL
	.text
	__HEAD

	/* These should probably go in a header file somewhere.
	 * They are duplicated in kernel/wrappers.S
+2 −1
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@
#include <asm/thread_info.h>

#include <linux/linkage.h>
#include <linux/init.h>

#ifdef CONFIG_64BIT
#define CMPIB           cmpib,*
@@ -629,7 +630,7 @@
	 * the static part of the kernel address space.
	 */

	.text
	__HEAD

	.align	PAGE_SIZE

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ ENTRY(boot_args)
	.word 0 /* arg3 */
END(boot_args)

	.section .text.head
	__HEAD
	.align	4
	.import init_thread_union,data
	.import fault_vector_20,code    /* IVA parisc 2.0 32 bit */
+2 −1
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@
#include <asm/pdc.h>

#include <linux/linkage.h>
#include <linux/init.h>

	/*
	 * stack for os_hpmc, the HPMC handler.
@@ -76,7 +77,7 @@ ENTRY(hpmc_pim_data)
	.block HPMC_PIM_DATA_SIZE
END(hpmc_pim_data)

	.text
	__HEAD

	.import intr_save, code
ENTRY(os_hpmc)
Loading