diff options
author | Helge Deller <deller@gmx.de> | 2008-05-02 22:02:48 +0200 |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2008-05-15 10:38:54 -0400 |
commit | bd3bb8c15b9a80dbddfb7905b237a4a11a4725b4 (patch) | |
tree | 13cd7556b4c39f94c4eb914d726aab34ca0de0de /arch/parisc/hpux | |
parent | 492c2e476eac010962850006c49df326919b284c (diff) | |
download | talos-op-linux-bd3bb8c15b9a80dbddfb7905b237a4a11a4725b4.tar.gz talos-op-linux-bd3bb8c15b9a80dbddfb7905b237a4a11a4725b4.zip |
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: Helge Deller <deller@gmx.de>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/hpux')
-rw-r--r-- | arch/parisc/hpux/gate.S | 3 | ||||
-rw-r--r-- | arch/parisc/hpux/wrappers.S | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/arch/parisc/hpux/gate.S b/arch/parisc/hpux/gate.S index 38a1c1b8d4e8..f0b18ce89842 100644 --- a/arch/parisc/hpux/gate.S +++ b/arch/parisc/hpux/gate.S @@ -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 diff --git a/arch/parisc/hpux/wrappers.S b/arch/parisc/hpux/wrappers.S index 58c53c879c02..ccd3a50c0995 100644 --- a/arch/parisc/hpux/wrappers.S +++ b/arch/parisc/hpux/wrappers.S @@ -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 |