diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-04-26 00:43:52 +0200 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2007-04-26 00:43:52 +0200 |
commit | 89cd6ca5a57e67604e05076203e1da12723dae12 (patch) | |
tree | 373d9b2f3a8c45ebfddf918d11ebb2eced639c5f /arch | |
parent | d19b7b09a83e1ef419a6bbe960a39b66c1d07e80 (diff) |
mca_nmi_hook() can be called at any point
... and having it __init is a bad idea.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/mach-default/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/mach-default/setup.c b/arch/i386/mach-default/setup.c index b4a7455c6993..7c5c224b0758 100644 --- a/arch/i386/mach-default/setup.c +++ b/arch/i386/mach-default/setup.c @@ -101,7 +101,7 @@ void __init time_init_hook(void) * along the MCA bus. Use this to hook into that chain if you will need * it. **/ -void __init mca_nmi_hook(void) +void mca_nmi_hook(void) { /* If I recall correctly, there's a whole bunch of other things that * we can do to check for NMI problems, but that's all I know about |