Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Revert "parisc: fix trivial section name warnings"

This reverts commit bd3bb8c15b9a80dbddfb7905b237a4a11a4725b4.

Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>

+18 -27
+1 -2
arch/parisc/hpux/gate.S
··· 13 13 #include <asm/unistd.h> 14 14 #include <asm/errno.h> 15 15 #include <linux/linkage.h> 16 - #include <linux/init.h> 17 16 18 17 .level LEVEL 19 - __HEAD 18 + .text 20 19 21 20 .import hpux_call_table 22 21 .import hpux_syscall_exit,code
+1 -2
arch/parisc/hpux/wrappers.S
··· 28 28 #include <asm/assembly.h> 29 29 #include <asm/signal.h> 30 30 #include <linux/linkage.h> 31 - #include <linux/init.h> 32 31 33 32 .level LEVEL 34 - __HEAD 33 + .text 35 34 36 35 /* These should probably go in a header file somewhere. 37 36 * They are duplicated in kernel/wrappers.S
+1 -2
arch/parisc/kernel/entry.S
··· 38 38 #include <asm/thread_info.h> 39 39 40 40 #include <linux/linkage.h> 41 - #include <linux/init.h> 42 41 43 42 #ifdef CONFIG_64BIT 44 43 .level 2.0w ··· 621 622 * the static part of the kernel address space. 622 623 */ 623 624 624 - __HEAD 625 + .text 625 626 626 627 .align PAGE_SIZE 627 628
+1 -1
arch/parisc/kernel/head.S
··· 32 32 .word 0 /* arg3 */ 33 33 END(boot_args) 34 34 35 - __HEAD 35 + .section .text.head 36 36 .align 4 37 37 .import init_thread_union,data 38 38 .import fault_vector_20,code /* IVA parisc 2.0 32 bit */
+1 -2
arch/parisc/kernel/hpmc.S
··· 47 47 #include <asm/pdc.h> 48 48 49 49 #include <linux/linkage.h> 50 - #include <linux/init.h> 51 50 52 51 /* 53 52 * stack for os_hpmc, the HPMC handler. ··· 76 77 .block HPMC_PIM_DATA_SIZE 77 78 END(hpmc_pim_data) 78 79 79 - __HEAD 80 + .text 80 81 81 82 .import intr_save, code 82 83 ENTRY(os_hpmc)
+1 -2
arch/parisc/kernel/pacache.S
··· 37 37 #include <asm/pgtable.h> 38 38 #include <asm/cache.h> 39 39 #include <linux/linkage.h> 40 - #include <linux/init.h> 41 40 42 - __HEAD 41 + .text 43 42 .align 128 44 43 45 44 ENTRY(flush_tlb_all_local)
+1 -1
arch/parisc/kernel/perf_asm.S
··· 43 43 ; The coprocessor only needs to be enabled when 44 44 ; starting/stopping the coprocessor with the pmenb/pmdis. 45 45 ; 46 - __HEAD 46 + .text 47 47 48 48 ENTRY(perf_intrigue_enable_perf_counters) 49 49 .proc
+6 -7
arch/parisc/kernel/real2.S
··· 12 12 #include <asm/assembly.h> 13 13 14 14 #include <linux/linkage.h> 15 - #include <linux/init.h> 16 15 17 16 .section .bss 18 17 .export real_stack ··· 39 40 /************************ 32-bit real-mode calls ***********************/ 40 41 /* This can be called in both narrow and wide kernels */ 41 42 42 - __HEAD 43 + .text 43 44 44 45 /* unsigned long real32_call_asm(unsigned int *sp, 45 46 * unsigned int *arg0p, ··· 113 114 # define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where) 114 115 # define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r 115 116 116 - __HEAD 117 + .text 117 118 save_control_regs: 118 119 load32 PA(save_cr_space), %r28 119 120 PUSH_CR(%cr24, %r28) ··· 145 146 /* rfi_virt2real() and rfi_real2virt() could perhaps be adapted for 146 147 * more general-purpose use by the several places which need RFIs 147 148 */ 148 - __HEAD 149 + .text 149 150 .align 128 150 151 rfi_virt2real: 151 152 /* switch to real mode... */ ··· 180 181 bv 0(%r2) 181 182 nop 182 183 183 - __HEAD 184 + .text 184 185 .align 128 185 186 rfi_real2virt: 186 187 rsm PSW_SM_I,%r0 ··· 218 219 219 220 /************************ 64-bit real-mode calls ***********************/ 220 221 /* This is only usable in wide kernels right now and will probably stay so */ 221 - __HEAD 222 + .text 222 223 /* unsigned long real64_call_asm(unsigned long *sp, 223 224 * unsigned long *arg0p, 224 225 * unsigned long fn) ··· 276 277 277 278 #endif 278 279 279 - __HEAD 280 + .text 280 281 /* http://lists.parisc-linux.org/hypermail/parisc-linux/10916.html 281 282 ** GCC 3.3 and later has a new function in libgcc.a for 282 283 ** comparing function pointers.
+2 -3
arch/parisc/kernel/syscall.S
··· 17 17 #include <asm/processor.h> 18 18 19 19 #include <linux/linkage.h> 20 - #include <linux/init.h> 21 20 22 21 /* We fill the empty parts of the gateway page with 23 22 * something that will kill the kernel or a ··· 26 27 27 28 .level LEVEL 28 29 29 - __HEAD 30 + .text 30 31 31 32 .import syscall_exit,code 32 33 .import syscall_exit_rfi,code ··· 636 637 All light-weight-syscall atomic operations 637 638 will use this set of locks 638 639 */ 639 - .section .data, "aw" 640 + .section .data 640 641 .align PAGE_SIZE 641 642 ENTRY(lws_lock_start) 642 643 /* lws locks */
+1 -2
arch/parisc/lib/fixup.S
··· 23 23 #include <asm/assembly.h> 24 24 #include <asm/errno.h> 25 25 #include <linux/linkage.h> 26 - #include <linux/init.h> 27 26 28 27 #ifdef CONFIG_SMP 29 28 .macro get_fault_ip t1 t2 ··· 55 56 56 57 .level LEVEL 57 58 58 - __HEAD 59 + .text 59 60 .section .fixup, "ax" 60 61 61 62 /* get_user() fixups, store -EFAULT in r8, and 0 in r9 */
+2 -3
arch/parisc/lib/lusercopy.S
··· 33 33 */ 34 34 35 35 36 + .text 37 + 36 38 #include <asm/assembly.h> 37 39 #include <asm/errno.h> 38 40 #include <linux/linkage.h> 39 - #include <linux/init.h> 40 - 41 - __HEAD 42 41 43 42 /* 44 43 * get_sr gets the appropriate space value into