diff options
author | David Daney <ddaney@caviumnetworks.com> | 2010-07-23 10:57:50 -0700 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 13:26:11 +0100 |
commit | 442f201286bfbbcd5ba5acb616914004be3e6268 (patch) | |
tree | 4da6e934c80312527c10d1f9006bac2f208f7338 /arch/mips/cavium-octeon | |
parent | edfcbb8cac13d679c0d656fd4576b3945429f3c0 (diff) | |
download | op-kernel-dev-442f201286bfbbcd5ba5acb616914004be3e6268.zip op-kernel-dev-442f201286bfbbcd5ba5acb616914004be3e6268.tar.gz |
MIPS: Octeon: Simplify hotcpu_notifier registration.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1490/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/cavium-octeon')
-rw-r--r-- | arch/mips/cavium-octeon/smp.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c index 8ff2c7b..ceb7649 100644 --- a/arch/mips/cavium-octeon/smp.c +++ b/arch/mips/cavium-octeon/smp.c @@ -428,17 +428,11 @@ static int __cpuinit octeon_cpu_callback(struct notifier_block *nfb, return NOTIFY_OK; } -static struct notifier_block __cpuinitdata octeon_cpu_notifier = { - .notifier_call = octeon_cpu_callback, -}; - static int __cpuinit register_cavium_notifier(void) { - register_hotcpu_notifier(&octeon_cpu_notifier); - + hotcpu_notifier(octeon_cpu_callback, 0); return 0; } - late_initcall(register_cavium_notifier); #endif /* CONFIG_HOTPLUG_CPU */ |