* [PATCH] mips: delete floating "__FINIT" section statements
@ 2013-06-18 19:47 ` Paul Gortmaker
0 siblings, 0 replies; 3+ messages in thread
From: Paul Gortmaker @ 2013-06-18 19:47 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-mips, Paul Gortmaker
Commit "mips: delete __cpuinit/__CPUINIT usage from MIPS code"
deleted the __CPUINIT instances, however there were some instances
of "__FINIT" (i.e. ".previous") that were being used in paring with
the __CPUINIT (i.e. section ".cpuinit.text").
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
[Again, free to squash this into the larger commit; hopefully this
is the last hidden trap lurking in this cleanup....]
arch/mips/kernel/head.S | 2 --
arch/mips/mm/cex-sb1.S | 2 --
arch/mips/netlogic/common/smpboot.S | 2 --
3 files changed, 6 deletions(-)
diff --git a/arch/mips/kernel/head.S b/arch/mips/kernel/head.S
index 42659f2..7b6a5b3 100644
--- a/arch/mips/kernel/head.S
+++ b/arch/mips/kernel/head.S
@@ -186,5 +186,3 @@ NESTED(smp_bootstrap, 16, sp)
j start_secondary
END(smp_bootstrap)
#endif /* CONFIG_SMP */
-
- __FINIT
diff --git a/arch/mips/mm/cex-sb1.S b/arch/mips/mm/cex-sb1.S
index 43d5243..191cf6e 100644
--- a/arch/mips/mm/cex-sb1.S
+++ b/arch/mips/mm/cex-sb1.S
@@ -140,8 +140,6 @@ unrecoverable:
END(except_vec2_sb1)
- __FINIT
-
LEAF(handle_vec2_sb1)
mfc0 k0,CP0_CONFIG
li k1,~CONF_CM_CMASK
diff --git a/arch/mips/netlogic/common/smpboot.S b/arch/mips/netlogic/common/smpboot.S
index 56769ee..aa6cff0 100644
--- a/arch/mips/netlogic/common/smpboot.S
+++ b/arch/mips/netlogic/common/smpboot.S
@@ -93,7 +93,6 @@ NESTED(nlm_boot_secondary_cpus, 16, sp)
jr t0
nop
END(nlm_boot_secondary_cpus)
- __FINIT
/*
* In case of RMIboot bootloader which is used on XLR boards, the CPUs
@@ -138,4 +137,3 @@ NESTED(nlm_rmiboot_preboot, 16, sp)
b 1b
nop
END(nlm_rmiboot_preboot)
- __FINIT
--
1.8.1.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] mips: delete floating "__FINIT" section statements
@ 2013-06-18 19:47 ` Paul Gortmaker
0 siblings, 0 replies; 3+ messages in thread
From: Paul Gortmaker @ 2013-06-18 19:47 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-mips, Paul Gortmaker
Commit "mips: delete __cpuinit/__CPUINIT usage from MIPS code"
deleted the __CPUINIT instances, however there were some instances
of "__FINIT" (i.e. ".previous") that were being used in paring with
the __CPUINIT (i.e. section ".cpuinit.text").
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
[Again, free to squash this into the larger commit; hopefully this
is the last hidden trap lurking in this cleanup....]
arch/mips/kernel/head.S | 2 --
arch/mips/mm/cex-sb1.S | 2 --
arch/mips/netlogic/common/smpboot.S | 2 --
3 files changed, 6 deletions(-)
diff --git a/arch/mips/kernel/head.S b/arch/mips/kernel/head.S
index 42659f2..7b6a5b3 100644
--- a/arch/mips/kernel/head.S
+++ b/arch/mips/kernel/head.S
@@ -186,5 +186,3 @@ NESTED(smp_bootstrap, 16, sp)
j start_secondary
END(smp_bootstrap)
#endif /* CONFIG_SMP */
-
- __FINIT
diff --git a/arch/mips/mm/cex-sb1.S b/arch/mips/mm/cex-sb1.S
index 43d5243..191cf6e 100644
--- a/arch/mips/mm/cex-sb1.S
+++ b/arch/mips/mm/cex-sb1.S
@@ -140,8 +140,6 @@ unrecoverable:
END(except_vec2_sb1)
- __FINIT
-
LEAF(handle_vec2_sb1)
mfc0 k0,CP0_CONFIG
li k1,~CONF_CM_CMASK
diff --git a/arch/mips/netlogic/common/smpboot.S b/arch/mips/netlogic/common/smpboot.S
index 56769ee..aa6cff0 100644
--- a/arch/mips/netlogic/common/smpboot.S
+++ b/arch/mips/netlogic/common/smpboot.S
@@ -93,7 +93,6 @@ NESTED(nlm_boot_secondary_cpus, 16, sp)
jr t0
nop
END(nlm_boot_secondary_cpus)
- __FINIT
/*
* In case of RMIboot bootloader which is used on XLR boards, the CPUs
@@ -138,4 +137,3 @@ NESTED(nlm_rmiboot_preboot, 16, sp)
b 1b
nop
END(nlm_rmiboot_preboot)
- __FINIT
--
1.8.1.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mips: delete floating "__FINIT" section statements
2013-06-18 19:47 ` Paul Gortmaker
(?)
@ 2013-06-18 21:03 ` Ralf Baechle
-1 siblings, 0 replies; 3+ messages in thread
From: Ralf Baechle @ 2013-06-18 21:03 UTC (permalink / raw)
To: Paul Gortmaker; +Cc: linux-mips
Thanks, also folded in.
Ralf
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-06-18 21:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-18 19:47 [PATCH] mips: delete floating "__FINIT" section statements Paul Gortmaker
2013-06-18 19:47 ` Paul Gortmaker
2013-06-18 21:03 ` Ralf Baechle
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.