diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-01-17 18:40:24 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-06-16 14:12:22 -0400 |
commit | 01f0aa8ed71540ad958eaf0373e5c5d3b1652392 (patch) | |
tree | b66a56ca1af4b455f36ad5f1716002bb56c16cc3 /arch | |
parent | 6a15fe9f2d51fb9d401543ae2efce2d7a9d68a26 (diff) | |
download | linux-stable-01f0aa8ed71540ad958eaf0373e5c5d3b1652392.tar.gz linux-stable-01f0aa8ed71540ad958eaf0373e5c5d3b1652392.tar.bz2 linux-stable-01f0aa8ed71540ad958eaf0373e5c5d3b1652392.zip |
mips/ath25: remove legacy __cpuinit section that crept in
We removed __cpuinit support (leaving no-op stubs) quite some time ago.
However this one crept back in as of commit 43cc739fd98b8c517ad45756d869f
("MIPS: ath25: add common parts")
Since we want to clobber the stubs soon, get this removed now.
Cc: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Acked-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Cc: linux-mips@linux-mips.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/ath25/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/ath25/board.c b/arch/mips/ath25/board.c index b8bb78282d6a..9ab48ff80c1c 100644 --- a/arch/mips/ath25/board.c +++ b/arch/mips/ath25/board.c @@ -216,7 +216,7 @@ void __init plat_time_init(void) ar2315_plat_time_init(); } -unsigned int __cpuinit get_c0_compare_int(void) +unsigned int get_c0_compare_int(void) { return CP0_LEGACY_COMPARE_IRQ; } |